mirror of
https://github.com/wassname/scikit-image.git
synced 2026-09-09 11:33:41 +08:00
Radon transform example: Correct axis labels
This commit is contained in:
@@ -44,9 +44,9 @@ plt.ylabel("Intensity");
|
|||||||
projections = radon(image)
|
projections = radon(image)
|
||||||
plt.subplot(223)
|
plt.subplot(223)
|
||||||
plt.title("Radon transform\n(Sinogram)");
|
plt.title("Radon transform\n(Sinogram)");
|
||||||
plt.xlabel("Projection axis");
|
plt.xlabel("Projection angle (degrees)");
|
||||||
plt.ylabel("Intensity");
|
plt.ylabel("Projection axis");
|
||||||
plt.imshow(projections)
|
plt.imshow(projections, aspect='auto')
|
||||||
|
|
||||||
reconstruction = iradon(projections)
|
reconstruction = iradon(projections)
|
||||||
plt.subplot(224)
|
plt.subplot(224)
|
||||||
|
|||||||
Reference in New Issue
Block a user