hello everyone,
i want to see available algorithms in my OPENCV version 2.4.1 for that i have written a code below
vector algorithms;
Algorithm::getList(algorithms);
cout << "Algorithms: " << algorithms.size() << endl;
for (int i=0; i
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??
↧