Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
David Youssefi
otb
Commits
31ac1d0f
Commit
31ac1d0f
authored
16 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
DOC: Adding doxygen information
parent
cfb3b550
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Code/BasicFilters/otbPolygonCompacityFunctor.h
+12
-1
12 additions, 1 deletion
Code/BasicFilters/otbPolygonCompacityFunctor.h
Code/FeatureExtraction/otbRemoveTortuousPathListFilter.h
+3
-1
3 additions, 1 deletion
Code/FeatureExtraction/otbRemoveTortuousPathListFilter.h
with
15 additions
and
2 deletions
Code/BasicFilters/otbPolygonCompacityFunctor.h
+
12
−
1
View file @
31ac1d0f
...
...
@@ -24,7 +24,18 @@ namespace otb
{
/** \class PolygonCompacityFunctor
* \brief
* \brief Select polygons according to their compacity
*
* This functor compute the compacity of a polygon
* and return true is the distance is above the threshold, false otherwise.
*
* The compacity is defined as:
*
* \f$ 4\pi \frac{S}{L}\f$
*
* where \f$ S \f$ is the surface (obtained by the method GetSurface() )
* and \f$ L \f$ the perimeter (obtained by the method GetLength() ).
*
* \ingroup Functor
*/
template
<
class
TInput1
>
...
...
This diff is collapsed.
Click to expand it.
Code/FeatureExtraction/otbRemoveTortuousPathListFilter.h
+
3
−
1
View file @
31ac1d0f
...
...
@@ -29,7 +29,7 @@ namespace otb
* \brief This filter remove path considered as tortuous.
*
* A path is considered to be tortuous if the mean distance between each consecutive vertices
* is lower than the user provided threshold.
* is
strictly
lower than the user provided threshold.
*
* \sa BreakAngularPathListFilter
* \sa SimplifyPathFilter
...
...
@@ -37,6 +37,8 @@ namespace otb
*<b>Recent API changes:</b>
* Now part of the UnaryFunctorObjectListBooleanFilter hierachy, replace call to SetMeanDistanceThreshold()
* by GetFunctor.SetThreshold().
*
* The inequality is now a strict one.
*
* \example FeatureExtraction/ExtractRoadByStepsExample.cxx
*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment