The fix can be easily made if you build from source (building for debian).
The key line that needs to be altered is at line 1131 of trunk/opencv/modules/python/api [svn browse ink]:
... QueryHistValue_3D double CvHistogram hist int idx0 int idx1 int idx2 QueryHistValue_nD double CvHistogram hist ints idx # Matching MatchTemplate CvArr image CvArr templ CvArr result int method MatchShapes <------------------ this line CvSeq object1 CvSeq object2 int method double parameter 0 # Contour Processing Functions ApproxChains CvSeq* CvSeq src_seq CvMemStorage storage int method CV_CHAIN_APPROX_SIMPLE double parameter 0 ...
Change the line to the following to make the python binding generator know that the method will return a double:
MatchShapes double
Then do the usual make && sudo make install. If running on debian-based systems, remember to copy across the python lib afterwards!
sudo mv /usr/local/lib/python2.6/site-packages/cv.so /usr/local/lib/python2.6/dist-packages/cv.so
James Bowman
January 21, 2011
Fix applied in r4548.