Skip doctest

This commit is contained in:
Julius Bier Kirekgaard
2015-11-29 14:15:10 +00:00
parent 6f1ec347f4
commit ea33891c60
+3 -2
View File
@@ -79,8 +79,9 @@ def active_contour(image, snake, alpha=0.01, beta=0.1,
Fit spline to image:
>>> snake = active_contour(img, init, w_edge=0, w_line=1)
>>> int(np.mean(np.sqrt((45-snake[:, 0])**2 + (35-snake[:, 1])**2)))
>>> snake = active_contour(img, init, w_edge=0, w_line=1) #doctest: +SKIP
>>> int(np.mean(np.sqrt((45-snake[:, 0])**2 +
(35-snake[:, 1])**2))) #doctest: +SKIP
25
"""