From 3054aa7aaf543819fd7629f6f7d3ee6acc99797c Mon Sep 17 00:00:00 2001 From: djjayeeta Date: Sun, 14 May 2017 12:46:34 +0530 Subject: [PATCH] run from existing image --- fuzzy_c_spatial_spectral.pyx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuzzy_c_spatial_spectral.pyx b/fuzzy_c_spatial_spectral.pyx index 4fb4b3c..fef0e59 100644 --- a/fuzzy_c_spatial_spectral.pyx +++ b/fuzzy_c_spatial_spectral.pyx @@ -277,7 +277,7 @@ def fuzzy_cluster(image_path,datetime_str): maxconn=8 itertion_number = 1 data = get_data_from_pickle(image_path) - print data + # print data row = len(data) col = len(data[0]) channel = len(data[0][0]) @@ -307,7 +307,7 @@ def fuzzy_cluster(image_path,datetime_str): def run_fuzzy(image_path): datetime_str = str(datetime.now()).replace(" ","") - create_image(image_path) + # create_image(image_path) image_name = image_path.split(".")[0] start_time = timeit.default_timer() save_pickle_from_image(image_path)