From b68decad9ec290bb3fdb3d568e60b6c598b7f4c2 Mon Sep 17 00:00:00 2001 From: emmanuelle Date: Sun, 20 Dec 2015 10:08:31 +0100 Subject: [PATCH] Thickened contours so that they are more visible in gallery thumbnail. --- doc/examples/plot_active_contours.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/examples/plot_active_contours.py b/doc/examples/plot_active_contours.py index a8cf7432..f6f2c1f6 100644 --- a/doc/examples/plot_active_contours.py +++ b/doc/examples/plot_active_contours.py @@ -59,8 +59,8 @@ if new_scipy: ax = fig.add_subplot(111) plt.gray() ax.imshow(img) - ax.plot(init[:, 0], init[:, 1], '--r') - ax.plot(snake[:, 0], snake[:, 1], '-b') + ax.plot(init[:, 0], init[:, 1], '--r', lw=3) + ax.plot(snake[:, 0], snake[:, 1], '-b', lw=3) ax.set_xticks([]), ax.set_yticks([]) ax.axis([0, img.shape[1], img.shape[0], 0]) @@ -87,8 +87,8 @@ if new_scipy: ax = fig.add_subplot(111) plt.gray() ax.imshow(img) - ax.plot(init[:, 0], init[:, 1], '--r') - ax.plot(snake[:, 0], snake[:, 1], '-b') + ax.plot(init[:, 0], init[:, 1], '--r', lw=3) + ax.plot(snake[:, 0], snake[:, 1], '-b', lw=3) ax.set_xticks([]), ax.set_yticks([]) ax.axis([0, img.shape[1], img.shape[0], 0])