Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Remote Modules
fast-lsd
Commits
f0fac67c
Commit
f0fac67c
authored
Apr 18, 2018
by
Yannick TANGUY
Browse files
ENH: add license information (WIP)
parent
3cd0c76e
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
LICENSE.txt
0 → 100644
View file @
f0fac67c
This diff is collapsed.
Click to expand it.
NOTICE.txt
0 → 100644
View file @
f0fac67c
Line Segment Detector (CMLA Algorithm)
Remote module for OTB
Copyright (c) 2007-2011 rafael grompone von gioi <grompone@gmail.com>
Copyright 2018 CNES
This program contains source code licensed under GNU Affrero General Public License :
- include/lsd.h
- src/lsd.c
The overall remote module is licensed under ...
app/otbLSDCMLA.cxx
View file @
f0fac67c
...
...
@@ -66,10 +66,16 @@ private:
void
DoInit
()
{
SetName
(
"LSDCMLA"
);
SetDescription
(
"TODO"
);
SetDocName
(
"Line Segment Detector (CMLA implementation)"
);
SetDocLongDescription
(
"TODO"
);
SetDescription
(
"Linear-time Line Segment Detector giving subpixel accurate results"
);
SetDocName
(
"Line Segment Detector (CMLA implementation) : \
Rafael Grompone von Gioi1, Jérémie Jakubowicz, Jean-Michel Morel, Gregory Randall4"
);
SetDocLongDescription
(
"Linear-time Line Segment Detector giving subpixel accurate results ; \
It is designed to work on any digital image without parameter tuning. \
It controls its own number of false detections: On average, one false alarms is allowed per image. \
The method is based on Burns, Hanson, and Riseman's method, \
and uses an a-contrario validation approach according to Desolneux, Moisan, and Morel's theory. \
The version described here includes some further improvement over the one described in the original article."
);
SetDocLimitations
(
"TODO"
);
SetDocAuthors
(
"Julien Michel"
);
SetDocSeeAlso
(
""
);
...
...
@@ -104,7 +110,7 @@ private:
SetParameterDescription
(
"logeps"
,
"Detection threshold"
);
SetDefaultParameterFloat
(
"logeps"
,
0
);
AddParameter
(
ParameterType_Float
,
"densityth"
,
"Minimal density of regions"
);
AddParameter
(
ParameterType_Float
,
"densityth"
,
"Minimal density of regions"
);
SetParameterDescription
(
"densityth"
,
"Minimal density of region points in a rectangle to be accepted."
);
SetDefaultParameterFloat
(
"densityth"
,
0.7
);
SetMinimumParameterFloatValue
(
"densityth"
,
0
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment