mirror of
https://github.com/wassname/scikit-image.git
synced 2026-06-28 20:56:46 +08:00
Fix mistake in example
This commit is contained in:
@@ -20,8 +20,8 @@ plt.title('Input image')
|
||||
|
||||
plt.subplot(1, 2, 2)
|
||||
plt.imshow(out, cmap=plt.cm.bone,
|
||||
extent=(d[0], d[-1],
|
||||
np.rad2deg(angles[0]), np.rad2deg(angles[-1])))
|
||||
extent=(np.rad2deg(angles[0]), np.rad2deg(angles[-1]),
|
||||
d[0], d[-1]))
|
||||
plt.title('Hough transform')
|
||||
plt.xlabel('Angle (degree)')
|
||||
plt.ylabel('Distance (pixel)')
|
||||
|
||||
Reference in New Issue
Block a user