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
a24a326b
Commit
a24a326b
authored
14 years ago
by
Julien Malik
Browse files
Options
Downloads
Patches
Plain Diff
DOC
parent
02218c6b
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/ObjectDetection/otbDescriptorsListSampleGenerator.h
+12
-4
12 additions, 4 deletions
Code/ObjectDetection/otbDescriptorsListSampleGenerator.h
with
12 additions
and
4 deletions
Code/ObjectDetection/otbDescriptorsListSampleGenerator.h
+
12
−
4
View file @
a24a326b
...
...
@@ -44,9 +44,10 @@ public:
};
/** \class PersistentDescriptorsListSampleGenerator
* \brief
*
* \brief [internal] Helper class for the implementation of DescriptorsListSampleGenerator
*
* This class inherits PersistentImageFilter and provides the Reset/Synthesize functions,
* plus the ThreadedGenerateData function implementing the image function evaluation
*/
template
<
class
TInputImage
,
class
TVectorData
,
class
TFunctionType
,
class
TListSample
,
class
TLabelListSample
>
class
ITK_EXPORT
PersistentDescriptorsListSampleGenerator
:
...
...
@@ -227,10 +228,17 @@ private:
/** \class DescriptorsListSampleGenerator
* \brief
* \brief This class generates a ListSample by computing local descriptors
* on an image at specified positions.
*
* Given an image (by SetInputImage()) and a vector data containing points (by SetSamplesLocations()),
* this class evaluates an ImageFunction (set by SetDescriptorsFunction()) at each point of the vector data
* over the image.
* It generates a ListSample containing the descriptors values for each sample,
* along with a label ListSample containing the label associatged with each sample.
* The label is read from the vector data using the data field "Class", read as an int
*
*
*
This class is streaming capable and multithreaded
*/
template
<
class
TInputImage
,
class
TVectorData
,
class
TListSample
,
class
TLabelListSample
,
class
TOutputPrecision
=
double
,
class
TCoordRep
=
double
>
class
ITK_EXPORT
DescriptorsListSampleGenerator
:
...
...
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