@ -2457,13 +2457,13 @@ Algorithm::name
---------------
Returns the algorithm name
.. ocv:function :: s tring Algorithm::name() const
.. ocv:function :: S tring Algorithm::name() const
Algorithm::get
--------------
Returns the algorithm parameter
.. ocv:function :: template<typename _Tp> typename ParamType<_Tp>::member_type Algorithm::get(const s tring& name) const
.. ocv:function :: template<typename _Tp> typename ParamType<_Tp>::member_type Algorithm::get(const S tring& name) const
:param name: The parameter name.
@ -2472,7 +2472,7 @@ The method returns value of the particular parameter. Since the compiler can not
* myalgo.get<int>("param_name")
* myalgo.get<double>("param_name")
* myalgo.get<bool>("param_name")
* myalgo.get<s tring>("param_name")
* myalgo.get<S tring>("param_name")
* myalgo.get<Mat>("param_name")
* myalgo.get<vector<Mat> >("param_name")
* myalgo.get<Algorithm>("param_name") (it returns Ptr<Algorithm>).
@ -2529,13 +2529,13 @@ Algorithm::getList
------------------
Returns the list of registered algorithms
.. ocv:function :: void Algorithm::getList(vector<s tring>& algorithms)
.. ocv:function :: void Algorithm::getList(vector<S tring>& algorithms)
:param algorithms: The output vector of algorithm names.
This static method returns the list of registered algorithms in alphabetical order. Here is how to use it ::
vector<s tring> algorithms;
vector<S tring> algorithms;
Algorithm::getList(algorithms);
cout << "Algorithms: " << algorithms.size() << endl;
for (size_t i=0; i < algorithms.size(); i++)