本文介绍了如何从 OpenCV“cv2.keypoint"中提取 x,y 坐标;目的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我尝试使用以下代码:

    xCoordinate=point.x

(点是 cv2.keyPoint 的类型)它给我错误说 cv2.keyPoint 没有属性 'x'

(point is type of cv2.keyPoint)It gives me error saying cv2.keyPoint has no attribute 'x'

推荐答案

您可以使用:

import numpy as np

pts = np.float([kp[idx].pt for idx in range(0, len(kp))]).reshape(-1, 1, 2)

pts 将是关键点的 array.

这篇关于如何从 OpenCV“cv2.keypoint"中提取 x,y 坐标;目的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 00:36