hello everyone, i want to see available algorithms in my OPENCV version 2.4.1 for that i have written a code below
vector<string> algorithms;
Algorithm::getList(algorithms);
cout << "Algorithms: " << algorithms.size() << endl;
for (int i=0; i<algorithms.size(); i++)
{
cout << algorithms[i] << endl;
}
and execute this program it give me following output ==> Algorithms: 5 CLAHE GeneralizedHough.POSITION GeneralizedHough.POSITION_ROTATION GeneralizedHough.POSITION_SCALE GeneralizedHough.POSITION_SCALE_ROTATION
is this output is correct or is other any way to find out avaliable algorithm in opencv??