I am using OpenCV 3.0 with VS2012 C++/CLI on a Win 8.1 64 bit machine and playing around with SURF.
I created a SURF detector as follows:
SurfDetector = new Ptr;
*SurfDetector = SurfFeatureDetector::create(MINHESSIANDEFAULT);
Where I set MINHESSIANDEFAULT to 400.
Now I want to adjust the Hessian value. I see the SurfAdjuster class/function but there is no example.
How would I use SurfAdjuster to change the Hessian value for my next feature detection?
Alternatively, is there a better way to do this?
Thanks
↧