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
513080ea
Commit
513080ea
authored
May 24, 2012
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
some more fixes in Algorithm methods declarations
parent
0fe0a881
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
23 deletions
+12
-23
basic_structures.rst
modules/core/doc/basic_structures.rst
+12
-23
No files found.
modules/core/doc/basic_structures.rst
View file @
513080ea
...
...
@@ -2357,7 +2357,7 @@ Algorithm::get
--------------
Returns the algorithm parameter
.. ocv:function:: template<typename _Tp> typename ParamType<_Tp>::member_type get(const string& name) const
.. ocv:function:: template<typename _Tp> typename ParamType<_Tp>::member_type
Algorithm::
get(const string& name) const
:param name: The parameter name.
...
...
@@ -2378,13 +2378,13 @@ Algorithm::set
--------------
Sets the algorithm parameter
.. ocv:function:: void set(const string& name, int value)
.. ocv:function:: void set(const string& name, double value)
.. ocv:function:: void set(const string& name, bool value)
.. ocv:function:: void set(const string& name, const string& value)
.. ocv:function:: void set(const string& name, const Mat& value)
.. ocv:function:: void set(const string& name, const vector<Mat>& value)
.. ocv:function:: void set(const string& name, const Ptr<Algorithm>& value)
.. ocv:function:: void
Algorithm::
set(const string& name, int value)
.. ocv:function:: void
Algorithm::
set(const string& name, double value)
.. ocv:function:: void
Algorithm::
set(const string& name, bool value)
.. ocv:function:: void
Algorithm::
set(const string& name, const string& value)
.. ocv:function:: void
Algorithm::
set(const string& name, const Mat& value)
.. ocv:function:: void
Algorithm::
set(const string& name, const vector<Mat>& value)
.. ocv:function:: void
Algorithm::
set(const string& name, const Ptr<Algorithm>& value)
:param name: The parameter name.
:param value: The parameter value.
...
...
@@ -2396,7 +2396,7 @@ Algorithm::write
----------------
Stores algorithm parameters in a file storage
.. ocv:function:: void write(FileStorage& fs) const
.. ocv:function:: void
Algorithm::
write(FileStorage& fs) const
:param fs: File storage.
...
...
@@ -2413,7 +2413,7 @@ Algorithm::read
---------------
Reads algorithm parameters from a file storage
.. ocv:function:: void read(const FileNode& fn)
.. ocv:function:: void
Algorithm::
read(const FileNode& fn)
:param fn: File node of the file storage.
...
...
@@ -2423,7 +2423,7 @@ Algorithm::getList
------------------
Returns the list of registered algorithms
.. ocv:function:: void getList(vector<string>& algorithms)
.. ocv:function:: void
Algorithm::
getList(vector<string>& algorithms)
:param algorithms: The output vector of algorithm names.
...
...
@@ -2436,22 +2436,11 @@ This static method returns the list of registered algorithms in alphabetical ord
cout << algorithms[i] << endl;
Algorithm::getList
------------------
Returns the list of registered algorithms
.. ocv:function:: void read(vector<string>& algorithms)
:param algorithms: The output vector of algorithm names.
This static method returns the list of registered algorithms in alphabetical order.
Algorithm::create
-----------------
Creates algorithm instance by name
.. ocv:function:: template<typename _Tp> Ptr<_Tp> create(const string& name)
.. ocv:function:: template<typename _Tp> Ptr<_Tp>
Algorithm::
create(const string& name)
:param name: The algorithm name, one of the names returned by ``Algorithm::getList()``.
...
...
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