MINOR: fix non ascii char

This commit is contained in:
François Boulogne
2013-08-06 16:40:04 +02:00
parent 1a9d5bb4ca
commit 6a114e8708
@@ -120,7 +120,7 @@ edges = filter.canny(image_gray, sigma=2.0,
# The value is chosen in order to get a single high accumulator.
# The threshold eliminates low accumulators
accum = hough_ellipse(edges, accuracy=10, threshold=150, min_size=50)
# Select the highest accumulator
# Select the highest accumulator
best = heapq.nlargest(1, accum)[0]
# Estimated parameters for the ellipse
center_y = int(best[1])