Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
d314c602
Commit
d314c602
authored
Jan 30, 2013
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add documentation for new classes
parent
1613aa45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
65 additions
and
3 deletions
+65
-3
softcascade_training.rst
modules/softcascade/doc/softcascade_training.rst
+65
-3
No files found.
modules/softcascade/doc/softcascade_training.rst
View file @
d314c602
...
...
@@ -11,7 +11,7 @@ SoftCascadeOctave
-----------------
.. ocv:class:: SoftCascadeOctave
Public interface for soft cascade training algorithm
Public interface for soft cascade training algorithm
. ::
class CV_EXPORTS SoftCascadeOctave : public Algorithm
{
...
...
@@ -70,8 +70,8 @@ SoftCascadeOctave::setRejectThresholds
SoftCascadeOctave::write
------------------------
.. ocv:function::
write
SoftCascadeOctave::train(cv::FileStorage &fs, const FeaturePool* pool, InputArray thresholds) const
.. ocv:function::
write
SoftCascadeOctave::train( CvFileStorage* fs, string name) const
.. ocv:function::
void
SoftCascadeOctave::train(cv::FileStorage &fs, const FeaturePool* pool, InputArray thresholds) const
.. ocv:function::
void
SoftCascadeOctave::train( CvFileStorage* fs, string name) const
:param fs an output file storage to store trained detector.
...
...
@@ -80,3 +80,64 @@ SoftCascadeOctave::write
:param dataset a rejection vector that should be included in detector xml file.
:param name a name of root node for trained detector.
FeaturePool
-----------
.. ocv:class:: FeaturePool
Public interface for feature pool. This is a hight level abstraction for training random feature pool. ::
class CV_EXPORTS FeaturePool
{
public:
virtual int size() const = 0;
virtual float apply(int fi, int si, const Mat& channels) const = 0;
virtual void write( cv::FileStorage& fs, int index) const = 0;
virtual ~FeaturePool();
};
FeaturePool::size
-----------------
Returns size of feature pool.
.. ocv:function:: int FeaturePool::size() const
FeaturePool::~FeaturePool
-------------------------
FeaturePool destructor.
.. ocv:function:: int FeaturePool::~FeaturePool()
FeaturePool::write
------------------
Write specified feature from feature pool to file storage.
.. ocv:function:: void FeaturePool::write( cv::FileStorage& fs, int index) const
:param fs an output file storage to store feature.
:param index an index of feature that should be stored.
FeaturePool::apply
------------------
Compute feature on integral channel image.
.. ocv:function:: float FeaturePool::apply(int fi, int si, const Mat& channels) const
:param fi an index of feature that should be computed.
:param si an index of sample.
:param fs a channel matrix.
\ No newline at end of file
Write
Preview
Markdown
is supported
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