摘要: def rectify_image(img1, img2): # 初始化SIFT检测器 sift = cv2.SIFT_create() # 检测关键点和计算描述符 kp1, des1 = sift.detectAndCompute(img1, None) kp2, des2 = sift.dete 阅读全文
posted @ 2024-03-19 11:41 多加辣 阅读(38) 评论(0) 推荐(0) 编辑