opencv/modules/core/include/opencv2
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
..
core Python bindings for KeyPoint methods 2013-08-30 11:11:06 +05:30
core.hpp Add missed constants for reduce operation 2013-04-12 14:37:02 +04:00