DOC: Limit figures to 8 inch widths.

This commit is contained in:
Tony S Yu
2012-02-20 09:40:56 -05:00
parent 0c304d5acd
commit cb93ebbf61
12 changed files with 52 additions and 59 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ img_eq = exposure.equalize(img)
# Display results
f, axes = plt.subplots(2, 3, figsize=(11, 5))
f, axes = plt.subplots(2, 3, figsize=(8, 4))
ax_img, ax_hist, ax_cdf = plot_img_and_hist(img, axes[:, 0])
ax_img.set_title('Low contrast image')