Is there a create for features in OpenCV 3?
I have tryed to change from openCV 2.4.9 to OpenCV 3.0.0 and when i have arrived at the features detection, descriptors extractor and matcher I have met some problems. In the 2.4.9 there are some static functions, create
, that return some cv::Ptr
of wanted types; and in the 3.0.0 version there are no such functions. It is true that OpenCV 3.0.0 is in beta version and I want to ask if the release version of 3.0.0 will contain the create
functions for detection and extraction? I am asking this, because I can wait until the 3.0.0 is released, but if the release version is not going to contain the create
functions like in the 2.4.9, I will code some function that will do the work.
Thanks