Add missing future import

This commit is contained in:
Johannes Schönberger
2013-04-28 10:19:14 +02:00
parent 5f4dd4ed5f
commit 9487ba7913
+3
View File
@@ -7,8 +7,11 @@ This example shows how to approximate (Douglas-Peucker algorithm) and subdivide
(B-Splines) polygonal chains.
"""
from __future__ import print_function
import numpy as np
import matplotlib.pyplot as plt
from skimage.draw import ellipse
from skimage.measure import find_contours, approximate_polygon, \
subdivide_polygon