mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
483 B
16 lines
483 B
#!/usr/bin/env python |
|
|
|
import cv2.cv as cv |
|
|
|
def precornerdetect(image): |
|
# assume that the image is floating-point |
|
corners = cv.CloneMat(image) |
|
cv.PreCornerDetect(image, corners, 3) |
|
|
|
dilated_corners = cv.CloneMat(image) |
|
cv.Dilate(corners, dilated_corners, None, 1) |
|
|
|
corner_mask = cv.CreateMat(image.rows, image.cols, cv.CV_8UC1) |
|
cv.Sub(corners, dilated_corners, corners) |
|
cv.CmpS(corners, 0, corner_mask, cv.CV_CMP_GE) |
|
return (corners, corner_mask)
|
|
|