Rename km_segmentation to slic. They have a PAMI paper now so I guess we should use their name.

This commit is contained in:
Andreas Mueller
2012-08-03 11:57:02 +01:00
parent 026b6b1df0
commit cd1007a0bc
4 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ def configuration(parent_package='', top_path=None):
cython(['quickshift.pyx'], working_path=base_path)
config.add_extension('quickshift', sources=['quickshift.c'],
include_dirs=[get_numpy_include_dirs()])
cython(['km_segmentation.pyx'], working_path=base_path)
config.add_extension('km_segmentation', sources=['km_segmentation.c'],
cython(['slic.pyx'], working_path=base_path)
config.add_extension('slic', sources=['slic.c'],
include_dirs=[get_numpy_include_dirs()])
return config