opencv/modules/highgui/doc
abidrahmank 14af369640 Python bindings for KeyPoint methods
Usage:

import numpy as np
import cv2
img = cv2.imread('messi5.jpg',0)
sift = cv2.SIFT()
kp = sift.detect(img)

pts = cv2.KeyPoint_convert(kp)

kps = cv2.KeyPoint_convert(pts.reshape(-1,1,2))

overlap = cv2.KeyPoint_overlap(kp[0],kp[1])
2013-08-30 11:11:06 +05:30
..
pics added pictures for OpenCV 2.x reference manual; fixed some build problems and done some more cleanup work 2011-03-05 21:26:13 +00:00
highgui.rst merged all the latest changes from 2.4 to trunk 2012-04-13 21:50:59 +00:00
qt_new_functions.rst Merge commit '43aec5ad' into merge-2.4 2013-08-27 13:26:44 +04:00
reading_and_writing_images_and_video.rst Merge commit '43aec5ad' into merge-2.4 2013-08-27 13:26:44 +04:00
user_interface.rst Python bindings for KeyPoint methods 2013-08-30 11:11:06 +05:30