特征匹配
import cv2
img1 = cv2.imread("box.png", 0)
img2 = cv2.imread("box_in_scene.png", 0)
def cv_show(name, img):
cv2.imshow(name,img)
cv2.waitKey(0)
cv2.destroyAllWindows()
cv_show(
特征匹配
import cv2
img1 = cv2.imread("box.png", 0)
img2 = cv2.imread("box_in_scene.png", 0)
def cv_show(name, img):
cv2.imshow(name,img)
cv2.waitKey(0)
cv2.destroyAllWindows()
cv_show(