Is PyramidAdaptedFeatureDetector gone in OpenCV 3?
This question was already asked here, but received no answers.
I have an OpenCV 2 C++ program which makes use of PyramidAdaptedFeatureDetector
(used over a GoodFeaturesToTrackDetector
for a Lukas-Kanade optical flow) and would like to port it to OpenCV 3. However I cannot find any trace of that class in the docs or in the code for OpenCV 3. Has it been removed? What is suggested as a replacement?
yes, it's gone, and there no real replacement in the library, you will have to come up with your own solution.
@berak And did the same happen to
OpponentColorDescriptorExtractor
? Out of curiosity, why were they deleted?maybe you can get away with just copying the previous implementation ?
yes, that's gone, too (and all Dynamic* Opponent* Dense* Pyramid* like things) no idea, why.