Reputation: 147
I've recently updated to OpenCV 3.0 tp2 on Python(2.7), to avail of the methods like drawMatches and drawMatchesKnn(), but neither seem to be available. I built from source, and everything installed correctly, but I still don't have the methods.
I had OpenCV 2.4.8, and I know it didn't have the methods, but I was pretty sure the 3.0tp2 did have them. Have they been removed since? Or have the names changed since?
Has anyone got an idea on what I could do to resolve this?
Upvotes: 1
Views: 1499
Reputation: 2332
The current official release of OpenCV is 2.4.8, and 2.4.9 is probably going to be released soon. OpenCV 3.0 is still under development, and might have some missing features or bugs.
I'd recommend to check if functionalities You are looking for are available in the current release, and if they aren't, check if Your problem is not listed as todos for 3.0 here.
To get current release just do git checkout 2.4.8 from Your root source directory.
Upvotes: 1