diff --git a/examples/cluster/plot_lena_segmentation.py b/examples/cluster/plot_lena_segmentation.py index 2c50d2b5adc50ea6aa6491008df95022efe9f4d4..d9273ba3866128e815803dadf1dbd1212c51e648 100644 --- a/examples/cluster/plot_lena_segmentation.py +++ b/examples/cluster/plot_lena_segmentation.py @@ -18,7 +18,7 @@ import numpy as np import scipy as sp import pylab as pl -from scikits.learn.features import image +from scikits.learn.feature_extraction import image from scikits.learn.cluster import spectral_clustering lena = sp.lena() diff --git a/examples/cluster/plot_segmentation_toy.py b/examples/cluster/plot_segmentation_toy.py index 0a8d0412badd32eb9ee9d9e6a2b0c5cfd457ae1c..1a52d336e8a3bc507e6127fb58aca4eeaa80e8c0 100644 --- a/examples/cluster/plot_segmentation_toy.py +++ b/examples/cluster/plot_segmentation_toy.py @@ -32,7 +32,7 @@ separating the objects one from the other, and not from the background. import numpy as np import pylab as pl -from scikits.learn.features import image +from scikits.learn.feature_extraction import image from scikits.learn.cluster import spectral_clustering ################################################################################