Change color of circles for better visibility

This commit is contained in:
Johannes Schönberger
2013-03-04 15:02:09 +01:00
parent 2e3f82e9d9
commit 2237cc1617
@@ -66,7 +66,7 @@ for idx in np.argsort(accums)[::-1][:5]:
center_x, center_y = centers[idx]
radius = radii[idx]
cx, cy = circle_perimeter(center_y, center_x, radius)
image[cy, cx] = (220, 250, 150)
image[cy, cx] = (220, 20, 20)
ax.imshow(image, cmap=plt.cm.gray)
plt.show()