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
9785a8ae
Commit
9785a8ae
authored
Dec 12, 2012
by
marina.kolpakova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix docs for SCascade
parent
c470e15d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
39 deletions
+9
-39
object_detection.rst
modules/gpu/doc/object_detection.rst
+9
-39
No files found.
modules/gpu/doc/object_detection.rst
View file @
9785a8ae
...
@@ -224,9 +224,9 @@ The sample has been rejected if it fall rejection threshold. So stageless cascad
...
@@ -224,9 +224,9 @@ The sample has been rejected if it fall rejection threshold. So stageless cascad
.. [BMTG12] Rodrigo Benenson, Markus Mathias, Radu Timofte and Luc Van Gool. Pedestrian detection at 100 frames per second. IEEE CVPR, 2012.
.. [BMTG12] Rodrigo Benenson, Markus Mathias, Radu Timofte and Luc Van Gool. Pedestrian detection at 100 frames per second. IEEE CVPR, 2012.
SCascade
gpu::
SCascade
----------------
----------------
-------------------------------
.. ocv:class:: SCascade : public Algorithm
.. ocv:class::
gpu::
SCascade : public Algorithm
Implementation of soft (stageless) cascaded detector. ::
Implementation of soft (stageless) cascaded detector. ::
...
@@ -252,45 +252,29 @@ Implementation of soft (stageless) cascaded detector. ::
...
@@ -252,45 +252,29 @@ Implementation of soft (stageless) cascaded detector. ::
};
};
SCascade::SCascade
gpu::SCascade::~SCascade
--------------------------
An empty cascade will be created.
.. ocv:function:: bool SCascade::SCascade(const float minScale = 0.4f, const float maxScale = 5.f, const int scales = 55, const int rejfactor = 1)
:param minScale: a minimum scale relative to the original size of the image on which cascade will be applyed.
:param maxScale: a maximum scale relative to the original size of the image on which cascade will be applyed.
:param scales: a number of scales from minScale to maxScale.
:param rejfactor: used for non maximum suppression.
SCascade::~SCascade
---------------------------
---------------------------
Destructor for SCascade.
Destructor for SCascade.
.. ocv:function:: SCascade::~SCascade()
.. ocv:function::
gpu::
SCascade::~SCascade()
SCascade::load
gpu::
SCascade::load
--------------------------
--------------------------
Load cascade from FileNode.
Load cascade from FileNode.
.. ocv:function:: bool SCascade::load(const FileNode& fn)
.. ocv:function:: bool
gpu::
SCascade::load(const FileNode& fn)
:param fn: File node from which the soft cascade are read.
:param fn: File node from which the soft cascade are read.
SCascade::detect
gpu::
SCascade::detect
--------------------------
--------------------------
Apply cascade to an input frame and return the vector of Decection objcts.
Apply cascade to an input frame and return the vector of Decection objcts.
.. ocv:function:: void detect(InputArray image, InputArray rois, OutputArray objects, Stream& stream = Stream::Null()) const
.. ocv:function:: void
gpu::SCascade::
detect(InputArray image, InputArray rois, OutputArray objects, Stream& stream = Stream::Null()) const
:param image: a frame on which detector will be applied.
:param image: a frame on which detector will be applied.
...
@@ -301,20 +285,6 @@ Apply cascade to an input frame and return the vector of Decection objcts.
...
@@ -301,20 +285,6 @@ Apply cascade to an input frame and return the vector of Decection objcts.
:param stream: a high-level CUDA stream abstraction used for asynchronous execution.
:param stream: a high-level CUDA stream abstraction used for asynchronous execution.
SCascade::genRoi
--------------------------
Convert ROI matrix into the suitable for detect method.
.. ocv:function:: void genRoi(InputArray roi, OutputArray mask, Stream& stream = Stream::Null()) const
:param rois: an input matrix of the same size as the image. There non zero value mean that detector should be executed in this point.
:param mask: an output mask
:param stream: a high-level CUDA stream abstraction used for asynchronous execution.
gpu::CascadeClassifier_GPU
gpu::CascadeClassifier_GPU
--------------------------
--------------------------
.. ocv:class:: gpu::CascadeClassifier_GPU
.. ocv:class:: gpu::CascadeClassifier_GPU
...
...
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