如何列出具有圆内像素坐标的数组

时间:2019-04-24 02:01:04

标签: python-2.7

我将图像定位为目标,并且要选择的部分在一个圆内,所以我需要该圆内所有像素的坐标(x,y)。

我正在使用python,一个库:从matplotlib.patches导入Circle

import matplotlib.pyplot as plt
from matplotlib.patches import Circle

raioelet = 20
raio = Circle((50, 65, raioelet, fill=False, linestyle='dashed')
ax.add_artist(raio)

上面的代码从X = 50和Y = 65的坐标开始,圈出了一个面积为20的圆圈。

问题:

如何像在圆弧内的坐标一样在数组中列出?

0 个答案:

没有答案