**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包括desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
主要思想是在Python中找到轮廓距离图像中心最远的点坐标。
通常情况下,可以使用OpenCV中的findcontours
和argmin
以及argmax
找到轮廓的极值点。
然而,对于这个问题,我们需要距离图像中心最远的点,如下图所示:
。
我们怎样才能达到这个距离?
1条答案
按热度按时间rjzwgtxy1#
看起来很简单:
首先对图像进行遮罩,以找到组成圆的像素,然后计算到每个点的距离,并返回最大距离以及相应的点。
编辑:您可能可以使用
np.linalg.norm
和np.argwhere
更优雅地实现这一点,但方法保持不变。