changed f to fig

This commit is contained in:
Siva Prasad Varma
2014-03-19 17:18:33 +05:30
parent febb4f09ca
commit a89dd4dedd
26 changed files with 50 additions and 50 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ image = camera()
thresh = threshold_otsu(image)
binary = image > thresh
f, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(8, 2.5))
fig, (ax1, ax2, ax3) = plt.subplots(1, 3, figsize=(8, 2.5))
ax1.imshow(image, cmap=plt.cm.gray)
ax1.set_title('Original')
ax1.axis('off')