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
1db536d7
Commit
1db536d7
authored
14 years ago
by
Julien Malik
Browse files
Options
Downloads
Patches
Plain Diff
DOC
parent
a24a326b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/ObjectDetection/otbObjectDetectionClassifier.h
+13
-3
13 additions, 3 deletions
Code/ObjectDetection/otbObjectDetectionClassifier.h
with
13 additions
and
3 deletions
Code/ObjectDetection/otbObjectDetectionClassifier.h
+
13
−
3
View file @
1db536d7
...
...
@@ -44,8 +44,11 @@ public:
};
/** \class PersistentObjectDetectionClassifier
* \brief
* \brief [internal] Helper class for the implementation of ObjectDetectionClassifier
* with streaming capabilities
*
* This class inherits PersistentImageFilter and provides the Reset/Synthesize functions,
* plus the ThreadedGenerateData function implementing the image function evaluation
*
*/
template
<
class
TInputImage
,
class
TOutputVectorData
,
class
TLabel
,
class
TFunctionType
>
...
...
@@ -224,10 +227,15 @@ private:
/** \class ObjectDetectionClassifier
* \brief
* \brief
This class detects object in an image, given a SVM model and a local descriptors function
*
*
* Given an image (by SetInputImage()), a SVM model (by SetSVMModel) and an local descriptors ImageFunction
* (set by SetDescriptorsFunction()), this class computes the local descriptors on a regular grid
* over the image, and evaluates the class label of the corresponding sample.
* It outputs a vector data with the points for which the descriptors are not classified as "negative",
* the negative class label being given by SetNoClassLabel()
*
* This class is streaming capable and multithreaded
*/
template
<
class
TInputImage
,
class
TOutputVectorData
,
class
TLabel
,
class
TFunctionPrecision
=
double
,
class
TCoordRep
=
double
>
class
ITK_EXPORT
ObjectDetectionClassifier
:
...
...
@@ -324,9 +332,11 @@ public:
otbSetObjectMemberMacro
(
Filter
,
NeighborhoodRadius
,
unsigned
int
);
otbGetObjectMemberMacro
(
Filter
,
NeighborhoodRadius
,
unsigned
int
);
/** Set/Get the name of the field containing the class information */
otbGetObjectMemberMacro
(
Filter
,
ClassKey
,
std
::
string
);
otbSetObjectMemberMacro
(
Filter
,
ClassKey
,
std
::
string
);
/** Set/Get the label of the negative samples */
otbGetObjectMemberMacro
(
Filter
,
NoClassLabel
,
LabelType
);
otbSetObjectMemberMacro
(
Filter
,
NoClassLabel
,
LabelType
);
...
...
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