Radon transform example: Correct axis labels

This commit is contained in:
Jostein Bø Fløystad
2013-06-09 19:29:53 +02:00
parent f20286b696
commit fcec46eb0d
+3 -3
View File
@@ -44,9 +44,9 @@ plt.ylabel("Intensity");
projections = radon(image)
plt.subplot(223)
plt.title("Radon transform\n(Sinogram)");
plt.xlabel("Projection axis");
plt.ylabel("Intensity");
plt.imshow(projections)
plt.xlabel("Projection angle (degrees)");
plt.ylabel("Projection axis");
plt.imshow(projections, aspect='auto')
reconstruction = iradon(projections)
plt.subplot(224)