diff --git a/.gitignore b/.gitignore index caba867..ebd9fcb 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ dataset +descriptors diff --git a/cvpr_computedescriptors.m b/cvpr_computedescriptors.m index 8407b5a..850b61c 100644 --- a/cvpr_computedescriptors.m +++ b/cvpr_computedescriptors.m @@ -22,6 +22,7 @@ OUT_FOLDER = 'descriptors'; %% and within that folder, create another folder to hold these descriptors %% the idea is all your descriptors are in individual folders - within %% the folder specified as 'OUT_FOLDER'. +% OUT_SUBFOLDER='avgRGB'; OUT_SUBFOLDER='globalRGBhisto'; allfiles=dir (fullfile([DATASET_FOLDER,'/Images/*.bmp'])); @@ -34,6 +35,7 @@ for filenum=1:length(allfiles) fout=[OUT_FOLDER,'/',OUT_SUBFOLDER,'/',fname(1:end-4),'.mat'];%replace .bmp with .mat %% EXTRACT FUNCTION +% F=extractAvgRGB(img); F=extractGlobalColHist(img); save(fout,'F'); toc diff --git a/cvpr_visualsearch.m b/cvpr_visualsearch.m index edf14b4..e0269d9 100644 --- a/cvpr_visualsearch.m +++ b/cvpr_visualsearch.m @@ -27,6 +27,7 @@ DATASET_FOLDER = 'dataset'; DESCRIPTOR_FOLDER = 'descriptors'; %% and within that folder, another folder to hold the descriptors %% we are interested in working with +% DESCRIPTOR_SUBFOLDER='avgRGB'; DESCRIPTOR_SUBFOLDER='globalRGBhisto'; @@ -58,65 +59,105 @@ end % get counts for each category for PR calculation CAT_HIST = histogram(ALLCATs).Values; -%% 2) Pick an image at random to be the query -NIMG=size(ALLFEAT,1); % number of images in collection -queryimg=floor(rand()*NIMG); % index of a random image +run_total = 20; +AP_values = zeros([1, run_total]); +for run=1:run_total + %% 2) Pick an image at random to be the query + NIMG=size(ALLFEAT,1); % number of images in collection + queryimg=floor(rand()*NIMG); % index of a random image -%% 3) Compute the distance of image to the query -dst=[]; -for i=1:NIMG - candidate=ALLFEAT(i,:); - query=ALLFEAT(queryimg,:); - - category=ALLCATs(i); - - %% COMPARE FUNCTION - thedst=compareEuclidean(query,candidate); - dst=[dst ; [thedst i category]]; -end -dst=sortrows(dst,1); % sort the results + %% 3) Compute the distance of image to the query + dst=[]; + for i=1:NIMG + candidate=ALLFEAT(i,:); + query=ALLFEAT(queryimg,:); -%% 3.5) Calculate PR -precision_values=[]; -recall_values=[]; -query_row = dst(1,:); -query_category = query_row(1,3); -for i=1:NIMG - - rows = dst(1:i, :); - - correct_results = 0; - incorrect_results = 0; - - for n=1:i - row = rows(n, :); + category=ALLCATs(i); + + %% COMPARE FUNCTION + thedst=compareEuclidean(query,candidate); + dst=[dst ; [thedst i category]]; + end + dst=sortrows(dst,1); % sort the results + + %% 3.5) Calculate PR + precision_values=zeros([1, NIMG]); + recall_values=zeros([1, NIMG]); + + correct_at_n=zeros([1, NIMG]); + + query_row = dst(1,:); + query_category = query_row(1,3); + for i=1:NIMG + + rows = dst(1:i, :); + + correct_results = 0; + incorrect_results = 0; + + if i > 1 + for n=1:i - 1 + row = rows(n, :); + category = row(3); + + if category == query_category + correct_results = correct_results + 1; + else + incorrect_results = incorrect_results + 1; + end + + end + end + + % LAST ROW + row = rows(i, :); category = row(3); - + if category == query_category correct_results = correct_results + 1; + correct_at_n(i) = 1; else incorrect_results = incorrect_results + 1; end - + + precision = correct_results / i; + recall = correct_results / CAT_HIST(1,query_category); + + precision_values(i) = precision; + recall_values(i) = recall; end + + + %% 3.6) calculate AP + P_rel_n = zeros([1, NIMG]); + for i = 1:NIMG + precision = precision_values(i); + i_result_relevant = correct_at_n(i); + + P_rel_n(i) = precision * i_result_relevant; + end + + sum_P_rel_n = sum(P_rel_n); + average_precision = sum_P_rel_n / CAT_HIST(1,query_category); - precision = correct_results / i; - recall = correct_results / CAT_HIST(1,query_category); - - precision_values(i) = precision; - recall_values(i) = recall; + AP_values(run) = average_precision; + + + %% 3.8) plot PR curve + figure(1) + plot(recall_values, precision_values); + hold on; + title('PR Curve'); + xlabel('Recall'); + ylabel('Precision'); + end -% plot PR curve -plot(recall_values, precision_values); -title('PR Curve'); -xlabel('Recall'); -ylabel('Precision'); +%% 3.9 Calculate MAP +AP_values +MAP = mean(AP_values) -% for i=1:NIMG -% [i, " -> p: ", precision_values(i), "r: ", recall_values(i)] -% end %% 4) Visualise the results %% These may be a little hard to see using imgshow @@ -131,5 +172,6 @@ for i=1:size(dst,1) img=img(1:81,:,:); % crop image to uniform size vertically (some MSVC images are different heights) outdisplay=[outdisplay img]; end -% imgshow(outdisplay); -% axis off; +figure(2) +imgshow(outdisplay); +axis off; diff --git a/cvpr_visualsearch.m~ b/cvpr_visualsearch.m~ index 85137df..24b7984 100644 --- a/cvpr_visualsearch.m~ +++ b/cvpr_visualsearch.m~ @@ -78,8 +78,11 @@ end dst=sortrows(dst,1); % sort the results %% 3.5) Calculate PR -precision_values=[]; -recall_values=[]; +precision_values=zeros([1, NIMG]); +recall_values=zeros([1, NIMG]); + +correct_at_n=zeros([1, NIMG]); + query_row = dst(1,:); query_category = query_row(1,3); for i=1:NIMG @@ -89,16 +92,29 @@ for i=1:NIMG correct_results = 0; incorrect_results = 0; - for n=1:i - row = rows(i, :); - category = row(3); - - if category == query_category - correct_results = correct_results + 1; - else - incorrect_results = incorrect_results + 1; + if i > 1 + for n=1:i - 1 + row = rows(n, :); + category = row(3); + + if category == query_category + correct_results = correct_results + 1; + else + incorrect_results = incorrect_results + 1; + end + end - + end + + % LAST ROW + row = rows(i, :); + category = row(3); + + if category == query_category + correct_results = correct_results + 1; + correct_at_n(i) = 1; + else + incorrect_results = incorrect_results + 1; end precision = correct_results / i; @@ -108,9 +124,20 @@ for i=1:NIMG recall_values(i) = recall; end -% for i=1:NIMG -% [i, " -> p: ", precision_values(i), "r: ", recall_values(i)] -% end + +%% 3.6) calculate AP +for i = 1:NIMG + precision = precision_values(i); + i +end + + +%% 3.8) plot PR curve +% plot(recall_values, precision_values); +% title('PR Curve'); +% xlabel('Recall'); +% ylabel('Precision'); + %% 4) Visualise the results %% These may be a little hard to see using imgshow diff --git a/descriptors/avgRGB/10_10_s.mat b/descriptors/avgRGB/10_10_s.mat deleted file mode 100644 index c4d73d0..0000000 Binary files a/descriptors/avgRGB/10_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_11_s.mat b/descriptors/avgRGB/10_11_s.mat deleted file mode 100644 index cd9f885..0000000 Binary files a/descriptors/avgRGB/10_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_12_s.mat b/descriptors/avgRGB/10_12_s.mat deleted file mode 100644 index f3498ab..0000000 Binary files a/descriptors/avgRGB/10_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_13_s.mat b/descriptors/avgRGB/10_13_s.mat deleted file mode 100644 index 74c12d8..0000000 Binary files a/descriptors/avgRGB/10_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_14_s.mat b/descriptors/avgRGB/10_14_s.mat deleted file mode 100644 index 1b4f160..0000000 Binary files a/descriptors/avgRGB/10_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_15_s.mat b/descriptors/avgRGB/10_15_s.mat deleted file mode 100644 index a88aa5c..0000000 Binary files a/descriptors/avgRGB/10_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_16_s.mat b/descriptors/avgRGB/10_16_s.mat deleted file mode 100644 index e9d2ac4..0000000 Binary files a/descriptors/avgRGB/10_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_17_s.mat b/descriptors/avgRGB/10_17_s.mat deleted file mode 100644 index b25e6ed..0000000 Binary files a/descriptors/avgRGB/10_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_18_s.mat b/descriptors/avgRGB/10_18_s.mat deleted file mode 100644 index 25de430..0000000 Binary files a/descriptors/avgRGB/10_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_19_s.mat b/descriptors/avgRGB/10_19_s.mat deleted file mode 100644 index edd7935..0000000 Binary files a/descriptors/avgRGB/10_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_1_s.mat b/descriptors/avgRGB/10_1_s.mat deleted file mode 100644 index 3e0ad86..0000000 Binary files a/descriptors/avgRGB/10_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_20_s.mat b/descriptors/avgRGB/10_20_s.mat deleted file mode 100644 index 21dcbe3..0000000 Binary files a/descriptors/avgRGB/10_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_21_s.mat b/descriptors/avgRGB/10_21_s.mat deleted file mode 100644 index a9c6d35..0000000 Binary files a/descriptors/avgRGB/10_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_22_s.mat b/descriptors/avgRGB/10_22_s.mat deleted file mode 100644 index 6378b22..0000000 Binary files a/descriptors/avgRGB/10_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_23_s.mat b/descriptors/avgRGB/10_23_s.mat deleted file mode 100644 index dbf01fb..0000000 Binary files a/descriptors/avgRGB/10_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_24_s.mat b/descriptors/avgRGB/10_24_s.mat deleted file mode 100644 index e5a0f6c..0000000 Binary files a/descriptors/avgRGB/10_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_25_s.mat b/descriptors/avgRGB/10_25_s.mat deleted file mode 100644 index 9b4a42b..0000000 Binary files a/descriptors/avgRGB/10_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_26_s.mat b/descriptors/avgRGB/10_26_s.mat deleted file mode 100644 index 850bbe1..0000000 Binary files a/descriptors/avgRGB/10_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_27_s.mat b/descriptors/avgRGB/10_27_s.mat deleted file mode 100644 index 772cb72..0000000 Binary files a/descriptors/avgRGB/10_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_28_s.mat b/descriptors/avgRGB/10_28_s.mat deleted file mode 100644 index 95a4ec8..0000000 Binary files a/descriptors/avgRGB/10_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_29_s.mat b/descriptors/avgRGB/10_29_s.mat deleted file mode 100644 index 6c9fb02..0000000 Binary files a/descriptors/avgRGB/10_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_2_s.mat b/descriptors/avgRGB/10_2_s.mat deleted file mode 100644 index 266d9d9..0000000 Binary files a/descriptors/avgRGB/10_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_30_s.mat b/descriptors/avgRGB/10_30_s.mat deleted file mode 100644 index e3abaa3..0000000 Binary files a/descriptors/avgRGB/10_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_31_s.mat b/descriptors/avgRGB/10_31_s.mat deleted file mode 100644 index ac62ff2..0000000 Binary files a/descriptors/avgRGB/10_31_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_32_s.mat b/descriptors/avgRGB/10_32_s.mat deleted file mode 100644 index 1744404..0000000 Binary files a/descriptors/avgRGB/10_32_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_3_s.mat b/descriptors/avgRGB/10_3_s.mat deleted file mode 100644 index 160d941..0000000 Binary files a/descriptors/avgRGB/10_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_4_s.mat b/descriptors/avgRGB/10_4_s.mat deleted file mode 100644 index 150f2db..0000000 Binary files a/descriptors/avgRGB/10_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_5_s.mat b/descriptors/avgRGB/10_5_s.mat deleted file mode 100644 index 401da32..0000000 Binary files a/descriptors/avgRGB/10_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_6_s.mat b/descriptors/avgRGB/10_6_s.mat deleted file mode 100644 index d648525..0000000 Binary files a/descriptors/avgRGB/10_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_7_s.mat b/descriptors/avgRGB/10_7_s.mat deleted file mode 100644 index 7404a9d..0000000 Binary files a/descriptors/avgRGB/10_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_8_s.mat b/descriptors/avgRGB/10_8_s.mat deleted file mode 100644 index 1decf77..0000000 Binary files a/descriptors/avgRGB/10_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/10_9_s.mat b/descriptors/avgRGB/10_9_s.mat deleted file mode 100644 index 7d24295..0000000 Binary files a/descriptors/avgRGB/10_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_10_s.mat b/descriptors/avgRGB/11_10_s.mat deleted file mode 100644 index 16672a5..0000000 Binary files a/descriptors/avgRGB/11_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_11_s.mat b/descriptors/avgRGB/11_11_s.mat deleted file mode 100644 index 57c74be..0000000 Binary files a/descriptors/avgRGB/11_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_12_s.mat b/descriptors/avgRGB/11_12_s.mat deleted file mode 100644 index 9ab1131..0000000 Binary files a/descriptors/avgRGB/11_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_13_s.mat b/descriptors/avgRGB/11_13_s.mat deleted file mode 100644 index def3b32..0000000 Binary files a/descriptors/avgRGB/11_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_14_s.mat b/descriptors/avgRGB/11_14_s.mat deleted file mode 100644 index 46498a1..0000000 Binary files a/descriptors/avgRGB/11_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_15_s.mat b/descriptors/avgRGB/11_15_s.mat deleted file mode 100644 index 59e92be..0000000 Binary files a/descriptors/avgRGB/11_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_16_s.mat b/descriptors/avgRGB/11_16_s.mat deleted file mode 100644 index f4219bd..0000000 Binary files a/descriptors/avgRGB/11_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_17_s.mat b/descriptors/avgRGB/11_17_s.mat deleted file mode 100644 index 68127a7..0000000 Binary files a/descriptors/avgRGB/11_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_18_s.mat b/descriptors/avgRGB/11_18_s.mat deleted file mode 100644 index 05d43be..0000000 Binary files a/descriptors/avgRGB/11_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_19_s.mat b/descriptors/avgRGB/11_19_s.mat deleted file mode 100644 index 49a1707..0000000 Binary files a/descriptors/avgRGB/11_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_1_s.mat b/descriptors/avgRGB/11_1_s.mat deleted file mode 100644 index faaae18..0000000 Binary files a/descriptors/avgRGB/11_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_20_s.mat b/descriptors/avgRGB/11_20_s.mat deleted file mode 100644 index c2b3028..0000000 Binary files a/descriptors/avgRGB/11_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_21_s.mat b/descriptors/avgRGB/11_21_s.mat deleted file mode 100644 index 74852a6..0000000 Binary files a/descriptors/avgRGB/11_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_22_s.mat b/descriptors/avgRGB/11_22_s.mat deleted file mode 100644 index 06e6757..0000000 Binary files a/descriptors/avgRGB/11_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_23_s.mat b/descriptors/avgRGB/11_23_s.mat deleted file mode 100644 index 7100228..0000000 Binary files a/descriptors/avgRGB/11_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_24_s.mat b/descriptors/avgRGB/11_24_s.mat deleted file mode 100644 index 3dac68e..0000000 Binary files a/descriptors/avgRGB/11_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_25_s.mat b/descriptors/avgRGB/11_25_s.mat deleted file mode 100644 index 6101008..0000000 Binary files a/descriptors/avgRGB/11_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_26_s.mat b/descriptors/avgRGB/11_26_s.mat deleted file mode 100644 index 280d26c..0000000 Binary files a/descriptors/avgRGB/11_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_27_s.mat b/descriptors/avgRGB/11_27_s.mat deleted file mode 100644 index 54bfc90..0000000 Binary files a/descriptors/avgRGB/11_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_28_s.mat b/descriptors/avgRGB/11_28_s.mat deleted file mode 100644 index 4d4cd09..0000000 Binary files a/descriptors/avgRGB/11_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_29_s.mat b/descriptors/avgRGB/11_29_s.mat deleted file mode 100644 index 35c2ad1..0000000 Binary files a/descriptors/avgRGB/11_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_2_s.mat b/descriptors/avgRGB/11_2_s.mat deleted file mode 100644 index 2fec0b6..0000000 Binary files a/descriptors/avgRGB/11_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_30_s.mat b/descriptors/avgRGB/11_30_s.mat deleted file mode 100644 index a35e994..0000000 Binary files a/descriptors/avgRGB/11_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_3_s.mat b/descriptors/avgRGB/11_3_s.mat deleted file mode 100644 index 5c5d717..0000000 Binary files a/descriptors/avgRGB/11_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_4_s.mat b/descriptors/avgRGB/11_4_s.mat deleted file mode 100644 index 5520660..0000000 Binary files a/descriptors/avgRGB/11_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_5_s.mat b/descriptors/avgRGB/11_5_s.mat deleted file mode 100644 index f933f77..0000000 Binary files a/descriptors/avgRGB/11_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_6_s.mat b/descriptors/avgRGB/11_6_s.mat deleted file mode 100644 index bc0915f..0000000 Binary files a/descriptors/avgRGB/11_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_7_s.mat b/descriptors/avgRGB/11_7_s.mat deleted file mode 100644 index 1928a70..0000000 Binary files a/descriptors/avgRGB/11_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_8_s.mat b/descriptors/avgRGB/11_8_s.mat deleted file mode 100644 index 9446a24..0000000 Binary files a/descriptors/avgRGB/11_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/11_9_s.mat b/descriptors/avgRGB/11_9_s.mat deleted file mode 100644 index f640fa3..0000000 Binary files a/descriptors/avgRGB/11_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_10_s.mat b/descriptors/avgRGB/12_10_s.mat deleted file mode 100644 index 9d76277..0000000 Binary files a/descriptors/avgRGB/12_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_11_s.mat b/descriptors/avgRGB/12_11_s.mat deleted file mode 100644 index f068b36..0000000 Binary files a/descriptors/avgRGB/12_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_12_s.mat b/descriptors/avgRGB/12_12_s.mat deleted file mode 100644 index ab19beb..0000000 Binary files a/descriptors/avgRGB/12_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_13_s.mat b/descriptors/avgRGB/12_13_s.mat deleted file mode 100644 index e93d04e..0000000 Binary files a/descriptors/avgRGB/12_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_14_s.mat b/descriptors/avgRGB/12_14_s.mat deleted file mode 100644 index e73561d..0000000 Binary files a/descriptors/avgRGB/12_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_15_s.mat b/descriptors/avgRGB/12_15_s.mat deleted file mode 100644 index d8ad8ad..0000000 Binary files a/descriptors/avgRGB/12_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_16_s.mat b/descriptors/avgRGB/12_16_s.mat deleted file mode 100644 index 996df2d..0000000 Binary files a/descriptors/avgRGB/12_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_17_s.mat b/descriptors/avgRGB/12_17_s.mat deleted file mode 100644 index 3c1042e..0000000 Binary files a/descriptors/avgRGB/12_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_18_s.mat b/descriptors/avgRGB/12_18_s.mat deleted file mode 100644 index be05338..0000000 Binary files a/descriptors/avgRGB/12_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_19_s.mat b/descriptors/avgRGB/12_19_s.mat deleted file mode 100644 index b0c40b1..0000000 Binary files a/descriptors/avgRGB/12_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_1_s.mat b/descriptors/avgRGB/12_1_s.mat deleted file mode 100644 index 096e357..0000000 Binary files a/descriptors/avgRGB/12_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_20_s.mat b/descriptors/avgRGB/12_20_s.mat deleted file mode 100644 index e80cd62..0000000 Binary files a/descriptors/avgRGB/12_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_21_s.mat b/descriptors/avgRGB/12_21_s.mat deleted file mode 100644 index 3189e6b..0000000 Binary files a/descriptors/avgRGB/12_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_22_s.mat b/descriptors/avgRGB/12_22_s.mat deleted file mode 100644 index b4d4a49..0000000 Binary files a/descriptors/avgRGB/12_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_23_s.mat b/descriptors/avgRGB/12_23_s.mat deleted file mode 100644 index 1e036a9..0000000 Binary files a/descriptors/avgRGB/12_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_24_s.mat b/descriptors/avgRGB/12_24_s.mat deleted file mode 100644 index b46c9a5..0000000 Binary files a/descriptors/avgRGB/12_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_25_s.mat b/descriptors/avgRGB/12_25_s.mat deleted file mode 100644 index 5849d2c..0000000 Binary files a/descriptors/avgRGB/12_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_26_s.mat b/descriptors/avgRGB/12_26_s.mat deleted file mode 100644 index 46ebc9e..0000000 Binary files a/descriptors/avgRGB/12_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_27_s.mat b/descriptors/avgRGB/12_27_s.mat deleted file mode 100644 index 7a083b4..0000000 Binary files a/descriptors/avgRGB/12_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_28_s.mat b/descriptors/avgRGB/12_28_s.mat deleted file mode 100644 index a1672be..0000000 Binary files a/descriptors/avgRGB/12_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_29_s.mat b/descriptors/avgRGB/12_29_s.mat deleted file mode 100644 index 628ae60..0000000 Binary files a/descriptors/avgRGB/12_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_2_s.mat b/descriptors/avgRGB/12_2_s.mat deleted file mode 100644 index de0a5fc..0000000 Binary files a/descriptors/avgRGB/12_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_30_s.mat b/descriptors/avgRGB/12_30_s.mat deleted file mode 100644 index f24c2ff..0000000 Binary files a/descriptors/avgRGB/12_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_31_s.mat b/descriptors/avgRGB/12_31_s.mat deleted file mode 100644 index 89fbaa4..0000000 Binary files a/descriptors/avgRGB/12_31_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_32_s.mat b/descriptors/avgRGB/12_32_s.mat deleted file mode 100644 index 6826b12..0000000 Binary files a/descriptors/avgRGB/12_32_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_33_s.mat b/descriptors/avgRGB/12_33_s.mat deleted file mode 100644 index 5d8dcf0..0000000 Binary files a/descriptors/avgRGB/12_33_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_34_s.mat b/descriptors/avgRGB/12_34_s.mat deleted file mode 100644 index aef29ab..0000000 Binary files a/descriptors/avgRGB/12_34_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_3_s.mat b/descriptors/avgRGB/12_3_s.mat deleted file mode 100644 index 9880ddb..0000000 Binary files a/descriptors/avgRGB/12_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_4_s.mat b/descriptors/avgRGB/12_4_s.mat deleted file mode 100644 index eee34d1..0000000 Binary files a/descriptors/avgRGB/12_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_5_s.mat b/descriptors/avgRGB/12_5_s.mat deleted file mode 100644 index ffd6ab8..0000000 Binary files a/descriptors/avgRGB/12_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_6_s.mat b/descriptors/avgRGB/12_6_s.mat deleted file mode 100644 index a6961fd..0000000 Binary files a/descriptors/avgRGB/12_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_7_s.mat b/descriptors/avgRGB/12_7_s.mat deleted file mode 100644 index 9ba2916..0000000 Binary files a/descriptors/avgRGB/12_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_8_s.mat b/descriptors/avgRGB/12_8_s.mat deleted file mode 100644 index 80029a9..0000000 Binary files a/descriptors/avgRGB/12_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/12_9_s.mat b/descriptors/avgRGB/12_9_s.mat deleted file mode 100644 index d368093..0000000 Binary files a/descriptors/avgRGB/12_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_10_s.mat b/descriptors/avgRGB/13_10_s.mat deleted file mode 100644 index 668b970..0000000 Binary files a/descriptors/avgRGB/13_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_11_s.mat b/descriptors/avgRGB/13_11_s.mat deleted file mode 100644 index 87fb0a1..0000000 Binary files a/descriptors/avgRGB/13_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_12_s.mat b/descriptors/avgRGB/13_12_s.mat deleted file mode 100644 index 9b1aeaa..0000000 Binary files a/descriptors/avgRGB/13_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_13_s.mat b/descriptors/avgRGB/13_13_s.mat deleted file mode 100644 index eb985a0..0000000 Binary files a/descriptors/avgRGB/13_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_14_s.mat b/descriptors/avgRGB/13_14_s.mat deleted file mode 100644 index 1623890..0000000 Binary files a/descriptors/avgRGB/13_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_15_s.mat b/descriptors/avgRGB/13_15_s.mat deleted file mode 100644 index f564bf7..0000000 Binary files a/descriptors/avgRGB/13_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_16_s.mat b/descriptors/avgRGB/13_16_s.mat deleted file mode 100644 index 774a1d6..0000000 Binary files a/descriptors/avgRGB/13_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_17_s.mat b/descriptors/avgRGB/13_17_s.mat deleted file mode 100644 index 2f9017c..0000000 Binary files a/descriptors/avgRGB/13_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_18_s.mat b/descriptors/avgRGB/13_18_s.mat deleted file mode 100644 index 6c1db73..0000000 Binary files a/descriptors/avgRGB/13_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_19_s.mat b/descriptors/avgRGB/13_19_s.mat deleted file mode 100644 index c6b365b..0000000 Binary files a/descriptors/avgRGB/13_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_1_s.mat b/descriptors/avgRGB/13_1_s.mat deleted file mode 100644 index 3171ba7..0000000 Binary files a/descriptors/avgRGB/13_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_20_s.mat b/descriptors/avgRGB/13_20_s.mat deleted file mode 100644 index 7cac69d..0000000 Binary files a/descriptors/avgRGB/13_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_21_s.mat b/descriptors/avgRGB/13_21_s.mat deleted file mode 100644 index 2a5eb1b..0000000 Binary files a/descriptors/avgRGB/13_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_22_s.mat b/descriptors/avgRGB/13_22_s.mat deleted file mode 100644 index aa12b15..0000000 Binary files a/descriptors/avgRGB/13_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_23_s.mat b/descriptors/avgRGB/13_23_s.mat deleted file mode 100644 index 4ff0eab..0000000 Binary files a/descriptors/avgRGB/13_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_24_s.mat b/descriptors/avgRGB/13_24_s.mat deleted file mode 100644 index 1a001e9..0000000 Binary files a/descriptors/avgRGB/13_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_25_s.mat b/descriptors/avgRGB/13_25_s.mat deleted file mode 100644 index 6c8c713..0000000 Binary files a/descriptors/avgRGB/13_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_26_s.mat b/descriptors/avgRGB/13_26_s.mat deleted file mode 100644 index 880e60a..0000000 Binary files a/descriptors/avgRGB/13_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_27_s.mat b/descriptors/avgRGB/13_27_s.mat deleted file mode 100644 index 0594bda..0000000 Binary files a/descriptors/avgRGB/13_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_28_s.mat b/descriptors/avgRGB/13_28_s.mat deleted file mode 100644 index 80e3558..0000000 Binary files a/descriptors/avgRGB/13_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_29_s.mat b/descriptors/avgRGB/13_29_s.mat deleted file mode 100644 index d93119c..0000000 Binary files a/descriptors/avgRGB/13_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_2_s.mat b/descriptors/avgRGB/13_2_s.mat deleted file mode 100644 index 49ef109..0000000 Binary files a/descriptors/avgRGB/13_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_30_s.mat b/descriptors/avgRGB/13_30_s.mat deleted file mode 100644 index 33bf9fc..0000000 Binary files a/descriptors/avgRGB/13_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_3_s.mat b/descriptors/avgRGB/13_3_s.mat deleted file mode 100644 index 8e8f6d4..0000000 Binary files a/descriptors/avgRGB/13_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_4_s.mat b/descriptors/avgRGB/13_4_s.mat deleted file mode 100644 index c11c0a7..0000000 Binary files a/descriptors/avgRGB/13_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_5_s.mat b/descriptors/avgRGB/13_5_s.mat deleted file mode 100644 index dab44df..0000000 Binary files a/descriptors/avgRGB/13_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_6_s.mat b/descriptors/avgRGB/13_6_s.mat deleted file mode 100644 index c13164b..0000000 Binary files a/descriptors/avgRGB/13_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_7_s.mat b/descriptors/avgRGB/13_7_s.mat deleted file mode 100644 index 7ad585d..0000000 Binary files a/descriptors/avgRGB/13_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_8_s.mat b/descriptors/avgRGB/13_8_s.mat deleted file mode 100644 index e3d62ac..0000000 Binary files a/descriptors/avgRGB/13_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/13_9_s.mat b/descriptors/avgRGB/13_9_s.mat deleted file mode 100644 index d361e2b..0000000 Binary files a/descriptors/avgRGB/13_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_10_s.mat b/descriptors/avgRGB/14_10_s.mat deleted file mode 100644 index bfc8723..0000000 Binary files a/descriptors/avgRGB/14_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_11_s.mat b/descriptors/avgRGB/14_11_s.mat deleted file mode 100644 index 7b63475..0000000 Binary files a/descriptors/avgRGB/14_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_12_s.mat b/descriptors/avgRGB/14_12_s.mat deleted file mode 100644 index 9200432..0000000 Binary files a/descriptors/avgRGB/14_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_13_s.mat b/descriptors/avgRGB/14_13_s.mat deleted file mode 100644 index fe49f0b..0000000 Binary files a/descriptors/avgRGB/14_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_14_s.mat b/descriptors/avgRGB/14_14_s.mat deleted file mode 100644 index 2494fc6..0000000 Binary files a/descriptors/avgRGB/14_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_15_s.mat b/descriptors/avgRGB/14_15_s.mat deleted file mode 100644 index fdb1829..0000000 Binary files a/descriptors/avgRGB/14_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_16_s.mat b/descriptors/avgRGB/14_16_s.mat deleted file mode 100644 index b3a0985..0000000 Binary files a/descriptors/avgRGB/14_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_17_s.mat b/descriptors/avgRGB/14_17_s.mat deleted file mode 100644 index f64cc25..0000000 Binary files a/descriptors/avgRGB/14_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_18_s.mat b/descriptors/avgRGB/14_18_s.mat deleted file mode 100644 index 100812d..0000000 Binary files a/descriptors/avgRGB/14_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_19_s.mat b/descriptors/avgRGB/14_19_s.mat deleted file mode 100644 index 765b462..0000000 Binary files a/descriptors/avgRGB/14_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_1_s.mat b/descriptors/avgRGB/14_1_s.mat deleted file mode 100644 index f2fa859..0000000 Binary files a/descriptors/avgRGB/14_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_20_s.mat b/descriptors/avgRGB/14_20_s.mat deleted file mode 100644 index 494f71a..0000000 Binary files a/descriptors/avgRGB/14_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_21_s.mat b/descriptors/avgRGB/14_21_s.mat deleted file mode 100644 index 0f0d84a..0000000 Binary files a/descriptors/avgRGB/14_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_22_s.mat b/descriptors/avgRGB/14_22_s.mat deleted file mode 100644 index 5df97e3..0000000 Binary files a/descriptors/avgRGB/14_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_23_s.mat b/descriptors/avgRGB/14_23_s.mat deleted file mode 100644 index 123d2ca..0000000 Binary files a/descriptors/avgRGB/14_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_24_s.mat b/descriptors/avgRGB/14_24_s.mat deleted file mode 100644 index 4c049ba..0000000 Binary files a/descriptors/avgRGB/14_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_25_s.mat b/descriptors/avgRGB/14_25_s.mat deleted file mode 100644 index a2ef3ef..0000000 Binary files a/descriptors/avgRGB/14_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_26_s.mat b/descriptors/avgRGB/14_26_s.mat deleted file mode 100644 index 6ac7b97..0000000 Binary files a/descriptors/avgRGB/14_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_27_s.mat b/descriptors/avgRGB/14_27_s.mat deleted file mode 100644 index 060072e..0000000 Binary files a/descriptors/avgRGB/14_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_28_s.mat b/descriptors/avgRGB/14_28_s.mat deleted file mode 100644 index ff24cfe..0000000 Binary files a/descriptors/avgRGB/14_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_29_s.mat b/descriptors/avgRGB/14_29_s.mat deleted file mode 100644 index 0dd0708..0000000 Binary files a/descriptors/avgRGB/14_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_2_s.mat b/descriptors/avgRGB/14_2_s.mat deleted file mode 100644 index 8f62565..0000000 Binary files a/descriptors/avgRGB/14_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_30_s.mat b/descriptors/avgRGB/14_30_s.mat deleted file mode 100644 index 154a8a6..0000000 Binary files a/descriptors/avgRGB/14_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_3_s.mat b/descriptors/avgRGB/14_3_s.mat deleted file mode 100644 index 7994dc5..0000000 Binary files a/descriptors/avgRGB/14_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_4_s.mat b/descriptors/avgRGB/14_4_s.mat deleted file mode 100644 index dcba099..0000000 Binary files a/descriptors/avgRGB/14_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_5_s.mat b/descriptors/avgRGB/14_5_s.mat deleted file mode 100644 index 09fb75d..0000000 Binary files a/descriptors/avgRGB/14_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_6_s.mat b/descriptors/avgRGB/14_6_s.mat deleted file mode 100644 index 01d9815..0000000 Binary files a/descriptors/avgRGB/14_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_7_s.mat b/descriptors/avgRGB/14_7_s.mat deleted file mode 100644 index a3d8fab..0000000 Binary files a/descriptors/avgRGB/14_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_8_s.mat b/descriptors/avgRGB/14_8_s.mat deleted file mode 100644 index b5192f5..0000000 Binary files a/descriptors/avgRGB/14_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/14_9_s.mat b/descriptors/avgRGB/14_9_s.mat deleted file mode 100644 index ea40141..0000000 Binary files a/descriptors/avgRGB/14_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_10_s.mat b/descriptors/avgRGB/15_10_s.mat deleted file mode 100644 index fabce3b..0000000 Binary files a/descriptors/avgRGB/15_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_11_s.mat b/descriptors/avgRGB/15_11_s.mat deleted file mode 100644 index 1c8217c..0000000 Binary files a/descriptors/avgRGB/15_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_12_s.mat b/descriptors/avgRGB/15_12_s.mat deleted file mode 100644 index 9dab33e..0000000 Binary files a/descriptors/avgRGB/15_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_13_s.mat b/descriptors/avgRGB/15_13_s.mat deleted file mode 100644 index 62fcab5..0000000 Binary files a/descriptors/avgRGB/15_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_14_s.mat b/descriptors/avgRGB/15_14_s.mat deleted file mode 100644 index 4851fbf..0000000 Binary files a/descriptors/avgRGB/15_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_15_s.mat b/descriptors/avgRGB/15_15_s.mat deleted file mode 100644 index e2bb300..0000000 Binary files a/descriptors/avgRGB/15_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_16_s.mat b/descriptors/avgRGB/15_16_s.mat deleted file mode 100644 index c851720..0000000 Binary files a/descriptors/avgRGB/15_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_17_s.mat b/descriptors/avgRGB/15_17_s.mat deleted file mode 100644 index fad2f5a..0000000 Binary files a/descriptors/avgRGB/15_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_18_s.mat b/descriptors/avgRGB/15_18_s.mat deleted file mode 100644 index 4f7cd7b..0000000 Binary files a/descriptors/avgRGB/15_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_19_s.mat b/descriptors/avgRGB/15_19_s.mat deleted file mode 100644 index c48393c..0000000 Binary files a/descriptors/avgRGB/15_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_1_s.mat b/descriptors/avgRGB/15_1_s.mat deleted file mode 100644 index 357eed7..0000000 Binary files a/descriptors/avgRGB/15_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_20_s.mat b/descriptors/avgRGB/15_20_s.mat deleted file mode 100644 index 83c0e88..0000000 Binary files a/descriptors/avgRGB/15_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_21_s.mat b/descriptors/avgRGB/15_21_s.mat deleted file mode 100644 index c00eab5..0000000 Binary files a/descriptors/avgRGB/15_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_22_s.mat b/descriptors/avgRGB/15_22_s.mat deleted file mode 100644 index a352bcd..0000000 Binary files a/descriptors/avgRGB/15_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_23_s.mat b/descriptors/avgRGB/15_23_s.mat deleted file mode 100644 index cc1cab2..0000000 Binary files a/descriptors/avgRGB/15_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_24_s.mat b/descriptors/avgRGB/15_24_s.mat deleted file mode 100644 index 969335f..0000000 Binary files a/descriptors/avgRGB/15_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_2_s.mat b/descriptors/avgRGB/15_2_s.mat deleted file mode 100644 index cd387ae..0000000 Binary files a/descriptors/avgRGB/15_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_3_s.mat b/descriptors/avgRGB/15_3_s.mat deleted file mode 100644 index 4785eaf..0000000 Binary files a/descriptors/avgRGB/15_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_4_s.mat b/descriptors/avgRGB/15_4_s.mat deleted file mode 100644 index 3a3c8f7..0000000 Binary files a/descriptors/avgRGB/15_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_5_s.mat b/descriptors/avgRGB/15_5_s.mat deleted file mode 100644 index 357470a..0000000 Binary files a/descriptors/avgRGB/15_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_6_s.mat b/descriptors/avgRGB/15_6_s.mat deleted file mode 100644 index b07139e..0000000 Binary files a/descriptors/avgRGB/15_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_7_s.mat b/descriptors/avgRGB/15_7_s.mat deleted file mode 100644 index 2bd8a58..0000000 Binary files a/descriptors/avgRGB/15_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_8_s.mat b/descriptors/avgRGB/15_8_s.mat deleted file mode 100644 index d961b82..0000000 Binary files a/descriptors/avgRGB/15_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/15_9_s.mat b/descriptors/avgRGB/15_9_s.mat deleted file mode 100644 index fb138cc..0000000 Binary files a/descriptors/avgRGB/15_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_10_s.mat b/descriptors/avgRGB/16_10_s.mat deleted file mode 100644 index 339b34f..0000000 Binary files a/descriptors/avgRGB/16_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_11_s.mat b/descriptors/avgRGB/16_11_s.mat deleted file mode 100644 index 57e04f5..0000000 Binary files a/descriptors/avgRGB/16_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_12_s.mat b/descriptors/avgRGB/16_12_s.mat deleted file mode 100644 index 7ff8297..0000000 Binary files a/descriptors/avgRGB/16_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_13_s.mat b/descriptors/avgRGB/16_13_s.mat deleted file mode 100644 index 56aeeef..0000000 Binary files a/descriptors/avgRGB/16_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_14_s.mat b/descriptors/avgRGB/16_14_s.mat deleted file mode 100644 index 27387e6..0000000 Binary files a/descriptors/avgRGB/16_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_15_s.mat b/descriptors/avgRGB/16_15_s.mat deleted file mode 100644 index 6057be4..0000000 Binary files a/descriptors/avgRGB/16_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_16_s.mat b/descriptors/avgRGB/16_16_s.mat deleted file mode 100644 index b478a4a..0000000 Binary files a/descriptors/avgRGB/16_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_17_s.mat b/descriptors/avgRGB/16_17_s.mat deleted file mode 100644 index 7c6cd5c..0000000 Binary files a/descriptors/avgRGB/16_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_18_s.mat b/descriptors/avgRGB/16_18_s.mat deleted file mode 100644 index f0393a2..0000000 Binary files a/descriptors/avgRGB/16_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_19_s.mat b/descriptors/avgRGB/16_19_s.mat deleted file mode 100644 index de7ef4f..0000000 Binary files a/descriptors/avgRGB/16_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_1_s.mat b/descriptors/avgRGB/16_1_s.mat deleted file mode 100644 index ad707ff..0000000 Binary files a/descriptors/avgRGB/16_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_20_s.mat b/descriptors/avgRGB/16_20_s.mat deleted file mode 100644 index 62387ef..0000000 Binary files a/descriptors/avgRGB/16_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_21_s.mat b/descriptors/avgRGB/16_21_s.mat deleted file mode 100644 index f4b8d7e..0000000 Binary files a/descriptors/avgRGB/16_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_22_s.mat b/descriptors/avgRGB/16_22_s.mat deleted file mode 100644 index 9fc4680..0000000 Binary files a/descriptors/avgRGB/16_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_23_s.mat b/descriptors/avgRGB/16_23_s.mat deleted file mode 100644 index 3a4eb44..0000000 Binary files a/descriptors/avgRGB/16_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_24_s.mat b/descriptors/avgRGB/16_24_s.mat deleted file mode 100644 index 94a77d5..0000000 Binary files a/descriptors/avgRGB/16_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_25_s.mat b/descriptors/avgRGB/16_25_s.mat deleted file mode 100644 index f44bdc7..0000000 Binary files a/descriptors/avgRGB/16_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_26_s.mat b/descriptors/avgRGB/16_26_s.mat deleted file mode 100644 index 38efce8..0000000 Binary files a/descriptors/avgRGB/16_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_27_s.mat b/descriptors/avgRGB/16_27_s.mat deleted file mode 100644 index 5a7857e..0000000 Binary files a/descriptors/avgRGB/16_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_28_s.mat b/descriptors/avgRGB/16_28_s.mat deleted file mode 100644 index 95e4f2b..0000000 Binary files a/descriptors/avgRGB/16_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_29_s.mat b/descriptors/avgRGB/16_29_s.mat deleted file mode 100644 index 7b8a68d..0000000 Binary files a/descriptors/avgRGB/16_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_2_s.mat b/descriptors/avgRGB/16_2_s.mat deleted file mode 100644 index 28feb23..0000000 Binary files a/descriptors/avgRGB/16_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_30_s.mat b/descriptors/avgRGB/16_30_s.mat deleted file mode 100644 index 725bced..0000000 Binary files a/descriptors/avgRGB/16_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_3_s.mat b/descriptors/avgRGB/16_3_s.mat deleted file mode 100644 index c152ac7..0000000 Binary files a/descriptors/avgRGB/16_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_4_s.mat b/descriptors/avgRGB/16_4_s.mat deleted file mode 100644 index bab127c..0000000 Binary files a/descriptors/avgRGB/16_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_5_s.mat b/descriptors/avgRGB/16_5_s.mat deleted file mode 100644 index 71953bb..0000000 Binary files a/descriptors/avgRGB/16_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_6_s.mat b/descriptors/avgRGB/16_6_s.mat deleted file mode 100644 index 01b4e48..0000000 Binary files a/descriptors/avgRGB/16_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_7_s.mat b/descriptors/avgRGB/16_7_s.mat deleted file mode 100644 index 953f534..0000000 Binary files a/descriptors/avgRGB/16_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_8_s.mat b/descriptors/avgRGB/16_8_s.mat deleted file mode 100644 index 17fe5a8..0000000 Binary files a/descriptors/avgRGB/16_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/16_9_s.mat b/descriptors/avgRGB/16_9_s.mat deleted file mode 100644 index c7fccd8..0000000 Binary files a/descriptors/avgRGB/16_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_10_s.mat b/descriptors/avgRGB/17_10_s.mat deleted file mode 100644 index 83176a2..0000000 Binary files a/descriptors/avgRGB/17_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_11_s.mat b/descriptors/avgRGB/17_11_s.mat deleted file mode 100644 index 65f7ba4..0000000 Binary files a/descriptors/avgRGB/17_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_12_s.mat b/descriptors/avgRGB/17_12_s.mat deleted file mode 100644 index 86914a1..0000000 Binary files a/descriptors/avgRGB/17_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_13_s.mat b/descriptors/avgRGB/17_13_s.mat deleted file mode 100644 index 3102b02..0000000 Binary files a/descriptors/avgRGB/17_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_14_s.mat b/descriptors/avgRGB/17_14_s.mat deleted file mode 100644 index 3fed769..0000000 Binary files a/descriptors/avgRGB/17_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_15_s.mat b/descriptors/avgRGB/17_15_s.mat deleted file mode 100644 index 3e18ef1..0000000 Binary files a/descriptors/avgRGB/17_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_16_s.mat b/descriptors/avgRGB/17_16_s.mat deleted file mode 100644 index 22560e8..0000000 Binary files a/descriptors/avgRGB/17_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_17_s.mat b/descriptors/avgRGB/17_17_s.mat deleted file mode 100644 index da46a64..0000000 Binary files a/descriptors/avgRGB/17_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_18_s.mat b/descriptors/avgRGB/17_18_s.mat deleted file mode 100644 index cfd2b37..0000000 Binary files a/descriptors/avgRGB/17_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_19_s.mat b/descriptors/avgRGB/17_19_s.mat deleted file mode 100644 index f12908e..0000000 Binary files a/descriptors/avgRGB/17_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_1_s.mat b/descriptors/avgRGB/17_1_s.mat deleted file mode 100644 index db5d8cf..0000000 Binary files a/descriptors/avgRGB/17_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_20_s.mat b/descriptors/avgRGB/17_20_s.mat deleted file mode 100644 index b1a6263..0000000 Binary files a/descriptors/avgRGB/17_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_21_s.mat b/descriptors/avgRGB/17_21_s.mat deleted file mode 100644 index 548c716..0000000 Binary files a/descriptors/avgRGB/17_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_22_s.mat b/descriptors/avgRGB/17_22_s.mat deleted file mode 100644 index 3bad05f..0000000 Binary files a/descriptors/avgRGB/17_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_23_s.mat b/descriptors/avgRGB/17_23_s.mat deleted file mode 100644 index d447378..0000000 Binary files a/descriptors/avgRGB/17_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_24_s.mat b/descriptors/avgRGB/17_24_s.mat deleted file mode 100644 index 460010c..0000000 Binary files a/descriptors/avgRGB/17_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_25_s.mat b/descriptors/avgRGB/17_25_s.mat deleted file mode 100644 index 39468f9..0000000 Binary files a/descriptors/avgRGB/17_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_26_s.mat b/descriptors/avgRGB/17_26_s.mat deleted file mode 100644 index cfeff92..0000000 Binary files a/descriptors/avgRGB/17_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_27_s.mat b/descriptors/avgRGB/17_27_s.mat deleted file mode 100644 index c5fc3d1..0000000 Binary files a/descriptors/avgRGB/17_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_28_s.mat b/descriptors/avgRGB/17_28_s.mat deleted file mode 100644 index 35abd63..0000000 Binary files a/descriptors/avgRGB/17_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_29_s.mat b/descriptors/avgRGB/17_29_s.mat deleted file mode 100644 index f4f564b..0000000 Binary files a/descriptors/avgRGB/17_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_2_s.mat b/descriptors/avgRGB/17_2_s.mat deleted file mode 100644 index fd4430e..0000000 Binary files a/descriptors/avgRGB/17_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_30_s.mat b/descriptors/avgRGB/17_30_s.mat deleted file mode 100644 index 6f6e390..0000000 Binary files a/descriptors/avgRGB/17_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_3_s.mat b/descriptors/avgRGB/17_3_s.mat deleted file mode 100644 index c0c316f..0000000 Binary files a/descriptors/avgRGB/17_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_4_s.mat b/descriptors/avgRGB/17_4_s.mat deleted file mode 100644 index bfcb2c1..0000000 Binary files a/descriptors/avgRGB/17_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_5_s.mat b/descriptors/avgRGB/17_5_s.mat deleted file mode 100644 index e791f6f..0000000 Binary files a/descriptors/avgRGB/17_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_6_s.mat b/descriptors/avgRGB/17_6_s.mat deleted file mode 100644 index 05fc8fa..0000000 Binary files a/descriptors/avgRGB/17_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_7_s.mat b/descriptors/avgRGB/17_7_s.mat deleted file mode 100644 index 590bc33..0000000 Binary files a/descriptors/avgRGB/17_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_8_s.mat b/descriptors/avgRGB/17_8_s.mat deleted file mode 100644 index e999d74..0000000 Binary files a/descriptors/avgRGB/17_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/17_9_s.mat b/descriptors/avgRGB/17_9_s.mat deleted file mode 100644 index 4345a70..0000000 Binary files a/descriptors/avgRGB/17_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_10_s.mat b/descriptors/avgRGB/18_10_s.mat deleted file mode 100644 index c7d0e11..0000000 Binary files a/descriptors/avgRGB/18_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_11_s.mat b/descriptors/avgRGB/18_11_s.mat deleted file mode 100644 index 6347879..0000000 Binary files a/descriptors/avgRGB/18_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_12_s.mat b/descriptors/avgRGB/18_12_s.mat deleted file mode 100644 index 679fe28..0000000 Binary files a/descriptors/avgRGB/18_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_13_s.mat b/descriptors/avgRGB/18_13_s.mat deleted file mode 100644 index d9e7727..0000000 Binary files a/descriptors/avgRGB/18_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_14_s.mat b/descriptors/avgRGB/18_14_s.mat deleted file mode 100644 index 8104f20..0000000 Binary files a/descriptors/avgRGB/18_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_15_s.mat b/descriptors/avgRGB/18_15_s.mat deleted file mode 100644 index 3bea1e6..0000000 Binary files a/descriptors/avgRGB/18_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_16_s.mat b/descriptors/avgRGB/18_16_s.mat deleted file mode 100644 index 4934bd8..0000000 Binary files a/descriptors/avgRGB/18_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_17_s.mat b/descriptors/avgRGB/18_17_s.mat deleted file mode 100644 index 0dc9cf2..0000000 Binary files a/descriptors/avgRGB/18_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_18_s.mat b/descriptors/avgRGB/18_18_s.mat deleted file mode 100644 index 48a3b29..0000000 Binary files a/descriptors/avgRGB/18_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_19_s.mat b/descriptors/avgRGB/18_19_s.mat deleted file mode 100644 index 8c1f122..0000000 Binary files a/descriptors/avgRGB/18_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_1_s.mat b/descriptors/avgRGB/18_1_s.mat deleted file mode 100644 index 15f307c..0000000 Binary files a/descriptors/avgRGB/18_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_20_s.mat b/descriptors/avgRGB/18_20_s.mat deleted file mode 100644 index 2faf351..0000000 Binary files a/descriptors/avgRGB/18_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_21_s.mat b/descriptors/avgRGB/18_21_s.mat deleted file mode 100644 index 38399bd..0000000 Binary files a/descriptors/avgRGB/18_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_22_s.mat b/descriptors/avgRGB/18_22_s.mat deleted file mode 100644 index 1a63526..0000000 Binary files a/descriptors/avgRGB/18_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_23_s.mat b/descriptors/avgRGB/18_23_s.mat deleted file mode 100644 index a904a72..0000000 Binary files a/descriptors/avgRGB/18_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_24_s.mat b/descriptors/avgRGB/18_24_s.mat deleted file mode 100644 index b36532b..0000000 Binary files a/descriptors/avgRGB/18_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_25_s.mat b/descriptors/avgRGB/18_25_s.mat deleted file mode 100644 index 43f7092..0000000 Binary files a/descriptors/avgRGB/18_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_26_s.mat b/descriptors/avgRGB/18_26_s.mat deleted file mode 100644 index 9c6125c..0000000 Binary files a/descriptors/avgRGB/18_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_27_s.mat b/descriptors/avgRGB/18_27_s.mat deleted file mode 100644 index 4d5a2e5..0000000 Binary files a/descriptors/avgRGB/18_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_28_s.mat b/descriptors/avgRGB/18_28_s.mat deleted file mode 100644 index 8a19af9..0000000 Binary files a/descriptors/avgRGB/18_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_29_s.mat b/descriptors/avgRGB/18_29_s.mat deleted file mode 100644 index 03f3064..0000000 Binary files a/descriptors/avgRGB/18_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_2_s.mat b/descriptors/avgRGB/18_2_s.mat deleted file mode 100644 index dfd995d..0000000 Binary files a/descriptors/avgRGB/18_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_30_s.mat b/descriptors/avgRGB/18_30_s.mat deleted file mode 100644 index bd40b64..0000000 Binary files a/descriptors/avgRGB/18_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_3_s.mat b/descriptors/avgRGB/18_3_s.mat deleted file mode 100644 index a941d5a..0000000 Binary files a/descriptors/avgRGB/18_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_4_s.mat b/descriptors/avgRGB/18_4_s.mat deleted file mode 100644 index 418f145..0000000 Binary files a/descriptors/avgRGB/18_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_5_s.mat b/descriptors/avgRGB/18_5_s.mat deleted file mode 100644 index 576c0ae..0000000 Binary files a/descriptors/avgRGB/18_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_6_s.mat b/descriptors/avgRGB/18_6_s.mat deleted file mode 100644 index 139c2a4..0000000 Binary files a/descriptors/avgRGB/18_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_7_s.mat b/descriptors/avgRGB/18_7_s.mat deleted file mode 100644 index 6c1e1d0..0000000 Binary files a/descriptors/avgRGB/18_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_8_s.mat b/descriptors/avgRGB/18_8_s.mat deleted file mode 100644 index 3ae2101..0000000 Binary files a/descriptors/avgRGB/18_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/18_9_s.mat b/descriptors/avgRGB/18_9_s.mat deleted file mode 100644 index f9d6fed..0000000 Binary files a/descriptors/avgRGB/18_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_10_s.mat b/descriptors/avgRGB/19_10_s.mat deleted file mode 100644 index 3c5112a..0000000 Binary files a/descriptors/avgRGB/19_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_11_s.mat b/descriptors/avgRGB/19_11_s.mat deleted file mode 100644 index 771beb0..0000000 Binary files a/descriptors/avgRGB/19_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_12_s.mat b/descriptors/avgRGB/19_12_s.mat deleted file mode 100644 index 04c9cbd..0000000 Binary files a/descriptors/avgRGB/19_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_13_s.mat b/descriptors/avgRGB/19_13_s.mat deleted file mode 100644 index e5fbf2d..0000000 Binary files a/descriptors/avgRGB/19_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_14_s.mat b/descriptors/avgRGB/19_14_s.mat deleted file mode 100644 index cc77634..0000000 Binary files a/descriptors/avgRGB/19_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_15_s.mat b/descriptors/avgRGB/19_15_s.mat deleted file mode 100644 index 1a5555c..0000000 Binary files a/descriptors/avgRGB/19_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_16_s.mat b/descriptors/avgRGB/19_16_s.mat deleted file mode 100644 index ccbd4f6..0000000 Binary files a/descriptors/avgRGB/19_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_17_s.mat b/descriptors/avgRGB/19_17_s.mat deleted file mode 100644 index 6a3c809..0000000 Binary files a/descriptors/avgRGB/19_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_18_s.mat b/descriptors/avgRGB/19_18_s.mat deleted file mode 100644 index 3a1bc8b..0000000 Binary files a/descriptors/avgRGB/19_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_19_s.mat b/descriptors/avgRGB/19_19_s.mat deleted file mode 100644 index a30974f..0000000 Binary files a/descriptors/avgRGB/19_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_1_s.mat b/descriptors/avgRGB/19_1_s.mat deleted file mode 100644 index d315cee..0000000 Binary files a/descriptors/avgRGB/19_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_20_s.mat b/descriptors/avgRGB/19_20_s.mat deleted file mode 100644 index afcba51..0000000 Binary files a/descriptors/avgRGB/19_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_21_s.mat b/descriptors/avgRGB/19_21_s.mat deleted file mode 100644 index 00c492e..0000000 Binary files a/descriptors/avgRGB/19_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_22_s.mat b/descriptors/avgRGB/19_22_s.mat deleted file mode 100644 index 7965ed3..0000000 Binary files a/descriptors/avgRGB/19_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_23_s.mat b/descriptors/avgRGB/19_23_s.mat deleted file mode 100644 index 32a019a..0000000 Binary files a/descriptors/avgRGB/19_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_24_s.mat b/descriptors/avgRGB/19_24_s.mat deleted file mode 100644 index fec94da..0000000 Binary files a/descriptors/avgRGB/19_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_25_s.mat b/descriptors/avgRGB/19_25_s.mat deleted file mode 100644 index cb593cf..0000000 Binary files a/descriptors/avgRGB/19_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_26_s.mat b/descriptors/avgRGB/19_26_s.mat deleted file mode 100644 index af03d6d..0000000 Binary files a/descriptors/avgRGB/19_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_27_s.mat b/descriptors/avgRGB/19_27_s.mat deleted file mode 100644 index 24b9b1f..0000000 Binary files a/descriptors/avgRGB/19_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_28_s.mat b/descriptors/avgRGB/19_28_s.mat deleted file mode 100644 index 00428e6..0000000 Binary files a/descriptors/avgRGB/19_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_29_s.mat b/descriptors/avgRGB/19_29_s.mat deleted file mode 100644 index 28affbd..0000000 Binary files a/descriptors/avgRGB/19_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_2_s.mat b/descriptors/avgRGB/19_2_s.mat deleted file mode 100644 index ad2e506..0000000 Binary files a/descriptors/avgRGB/19_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_30_s.mat b/descriptors/avgRGB/19_30_s.mat deleted file mode 100644 index 364262f..0000000 Binary files a/descriptors/avgRGB/19_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_3_s.mat b/descriptors/avgRGB/19_3_s.mat deleted file mode 100644 index 6b7fd40..0000000 Binary files a/descriptors/avgRGB/19_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_4_s.mat b/descriptors/avgRGB/19_4_s.mat deleted file mode 100644 index c0da1ef..0000000 Binary files a/descriptors/avgRGB/19_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_5_s.mat b/descriptors/avgRGB/19_5_s.mat deleted file mode 100644 index 3239b7e..0000000 Binary files a/descriptors/avgRGB/19_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_6_s.mat b/descriptors/avgRGB/19_6_s.mat deleted file mode 100644 index 625586d..0000000 Binary files a/descriptors/avgRGB/19_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_7_s.mat b/descriptors/avgRGB/19_7_s.mat deleted file mode 100644 index 6a854ed..0000000 Binary files a/descriptors/avgRGB/19_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_8_s.mat b/descriptors/avgRGB/19_8_s.mat deleted file mode 100644 index bfb59d8..0000000 Binary files a/descriptors/avgRGB/19_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/19_9_s.mat b/descriptors/avgRGB/19_9_s.mat deleted file mode 100644 index 152abdf..0000000 Binary files a/descriptors/avgRGB/19_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_10_s.mat b/descriptors/avgRGB/1_10_s.mat deleted file mode 100644 index 7c94a37..0000000 Binary files a/descriptors/avgRGB/1_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_11_s.mat b/descriptors/avgRGB/1_11_s.mat deleted file mode 100644 index a9eae8e..0000000 Binary files a/descriptors/avgRGB/1_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_12_s.mat b/descriptors/avgRGB/1_12_s.mat deleted file mode 100644 index e3f112a..0000000 Binary files a/descriptors/avgRGB/1_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_13_s.mat b/descriptors/avgRGB/1_13_s.mat deleted file mode 100644 index 1363458..0000000 Binary files a/descriptors/avgRGB/1_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_14_s.mat b/descriptors/avgRGB/1_14_s.mat deleted file mode 100644 index 3627f52..0000000 Binary files a/descriptors/avgRGB/1_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_15_s.mat b/descriptors/avgRGB/1_15_s.mat deleted file mode 100644 index cecb92c..0000000 Binary files a/descriptors/avgRGB/1_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_16_s.mat b/descriptors/avgRGB/1_16_s.mat deleted file mode 100644 index 1a1fce5..0000000 Binary files a/descriptors/avgRGB/1_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_17_s.mat b/descriptors/avgRGB/1_17_s.mat deleted file mode 100644 index 7404b20..0000000 Binary files a/descriptors/avgRGB/1_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_18_s.mat b/descriptors/avgRGB/1_18_s.mat deleted file mode 100644 index 3d044e1..0000000 Binary files a/descriptors/avgRGB/1_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_19_s.mat b/descriptors/avgRGB/1_19_s.mat deleted file mode 100644 index 78c11fd..0000000 Binary files a/descriptors/avgRGB/1_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_1_s.mat b/descriptors/avgRGB/1_1_s.mat deleted file mode 100644 index e9dab03..0000000 Binary files a/descriptors/avgRGB/1_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_20_s.mat b/descriptors/avgRGB/1_20_s.mat deleted file mode 100644 index 44ea7d9..0000000 Binary files a/descriptors/avgRGB/1_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_21_s.mat b/descriptors/avgRGB/1_21_s.mat deleted file mode 100644 index c94e3e4..0000000 Binary files a/descriptors/avgRGB/1_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_22_s.mat b/descriptors/avgRGB/1_22_s.mat deleted file mode 100644 index d91d816..0000000 Binary files a/descriptors/avgRGB/1_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_23_s.mat b/descriptors/avgRGB/1_23_s.mat deleted file mode 100644 index 1bddcd4..0000000 Binary files a/descriptors/avgRGB/1_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_24_s.mat b/descriptors/avgRGB/1_24_s.mat deleted file mode 100644 index ea57711..0000000 Binary files a/descriptors/avgRGB/1_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_25_s.mat b/descriptors/avgRGB/1_25_s.mat deleted file mode 100644 index c2b5d55..0000000 Binary files a/descriptors/avgRGB/1_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_26_s.mat b/descriptors/avgRGB/1_26_s.mat deleted file mode 100644 index 616dc49..0000000 Binary files a/descriptors/avgRGB/1_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_27_s.mat b/descriptors/avgRGB/1_27_s.mat deleted file mode 100644 index 4b08151..0000000 Binary files a/descriptors/avgRGB/1_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_28_s.mat b/descriptors/avgRGB/1_28_s.mat deleted file mode 100644 index ad83cc2..0000000 Binary files a/descriptors/avgRGB/1_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_29_s.mat b/descriptors/avgRGB/1_29_s.mat deleted file mode 100644 index cf2a666..0000000 Binary files a/descriptors/avgRGB/1_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_2_s.mat b/descriptors/avgRGB/1_2_s.mat deleted file mode 100644 index 9c8c292..0000000 Binary files a/descriptors/avgRGB/1_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_30_s.mat b/descriptors/avgRGB/1_30_s.mat deleted file mode 100644 index 545163f..0000000 Binary files a/descriptors/avgRGB/1_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_3_s.mat b/descriptors/avgRGB/1_3_s.mat deleted file mode 100644 index 521d24a..0000000 Binary files a/descriptors/avgRGB/1_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_4_s.mat b/descriptors/avgRGB/1_4_s.mat deleted file mode 100644 index aed567e..0000000 Binary files a/descriptors/avgRGB/1_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_5_s.mat b/descriptors/avgRGB/1_5_s.mat deleted file mode 100644 index b650270..0000000 Binary files a/descriptors/avgRGB/1_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_6_s.mat b/descriptors/avgRGB/1_6_s.mat deleted file mode 100644 index c12c526..0000000 Binary files a/descriptors/avgRGB/1_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_7_s.mat b/descriptors/avgRGB/1_7_s.mat deleted file mode 100644 index e5fc26e..0000000 Binary files a/descriptors/avgRGB/1_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_8_s.mat b/descriptors/avgRGB/1_8_s.mat deleted file mode 100644 index 40aba72..0000000 Binary files a/descriptors/avgRGB/1_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/1_9_s.mat b/descriptors/avgRGB/1_9_s.mat deleted file mode 100644 index 5c79f8c..0000000 Binary files a/descriptors/avgRGB/1_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_10_s.mat b/descriptors/avgRGB/20_10_s.mat deleted file mode 100644 index 3e96d97..0000000 Binary files a/descriptors/avgRGB/20_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_11_s.mat b/descriptors/avgRGB/20_11_s.mat deleted file mode 100644 index eb49e17..0000000 Binary files a/descriptors/avgRGB/20_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_12_s.mat b/descriptors/avgRGB/20_12_s.mat deleted file mode 100644 index b8f8e5a..0000000 Binary files a/descriptors/avgRGB/20_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_13_s.mat b/descriptors/avgRGB/20_13_s.mat deleted file mode 100644 index e9cf5bf..0000000 Binary files a/descriptors/avgRGB/20_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_14_s.mat b/descriptors/avgRGB/20_14_s.mat deleted file mode 100644 index 616795c..0000000 Binary files a/descriptors/avgRGB/20_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_15_s.mat b/descriptors/avgRGB/20_15_s.mat deleted file mode 100644 index 8623d6e..0000000 Binary files a/descriptors/avgRGB/20_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_16_s.mat b/descriptors/avgRGB/20_16_s.mat deleted file mode 100644 index 87c916d..0000000 Binary files a/descriptors/avgRGB/20_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_17_s.mat b/descriptors/avgRGB/20_17_s.mat deleted file mode 100644 index be76e08..0000000 Binary files a/descriptors/avgRGB/20_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_18_s.mat b/descriptors/avgRGB/20_18_s.mat deleted file mode 100644 index d240780..0000000 Binary files a/descriptors/avgRGB/20_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_19_s.mat b/descriptors/avgRGB/20_19_s.mat deleted file mode 100644 index 050599c..0000000 Binary files a/descriptors/avgRGB/20_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_1_s.mat b/descriptors/avgRGB/20_1_s.mat deleted file mode 100644 index 15edfd4..0000000 Binary files a/descriptors/avgRGB/20_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_20_s.mat b/descriptors/avgRGB/20_20_s.mat deleted file mode 100644 index 4ae3962..0000000 Binary files a/descriptors/avgRGB/20_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_21_s.mat b/descriptors/avgRGB/20_21_s.mat deleted file mode 100644 index 4b2c281..0000000 Binary files a/descriptors/avgRGB/20_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_2_s.mat b/descriptors/avgRGB/20_2_s.mat deleted file mode 100644 index 6e707d7..0000000 Binary files a/descriptors/avgRGB/20_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_3_s.mat b/descriptors/avgRGB/20_3_s.mat deleted file mode 100644 index 3cde6ce..0000000 Binary files a/descriptors/avgRGB/20_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_4_s.mat b/descriptors/avgRGB/20_4_s.mat deleted file mode 100644 index 954df31..0000000 Binary files a/descriptors/avgRGB/20_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_5_s.mat b/descriptors/avgRGB/20_5_s.mat deleted file mode 100644 index e638136..0000000 Binary files a/descriptors/avgRGB/20_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_6_s.mat b/descriptors/avgRGB/20_6_s.mat deleted file mode 100644 index eaf69a6..0000000 Binary files a/descriptors/avgRGB/20_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_7_s.mat b/descriptors/avgRGB/20_7_s.mat deleted file mode 100644 index 164c3be..0000000 Binary files a/descriptors/avgRGB/20_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_8_s.mat b/descriptors/avgRGB/20_8_s.mat deleted file mode 100644 index 128be19..0000000 Binary files a/descriptors/avgRGB/20_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/20_9_s.mat b/descriptors/avgRGB/20_9_s.mat deleted file mode 100644 index 695f667..0000000 Binary files a/descriptors/avgRGB/20_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_10_s.mat b/descriptors/avgRGB/2_10_s.mat deleted file mode 100644 index 035e1cc..0000000 Binary files a/descriptors/avgRGB/2_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_11_s.mat b/descriptors/avgRGB/2_11_s.mat deleted file mode 100644 index 68b7fb1..0000000 Binary files a/descriptors/avgRGB/2_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_12_s.mat b/descriptors/avgRGB/2_12_s.mat deleted file mode 100644 index e0c53b4..0000000 Binary files a/descriptors/avgRGB/2_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_13_s.mat b/descriptors/avgRGB/2_13_s.mat deleted file mode 100644 index f9df0f1..0000000 Binary files a/descriptors/avgRGB/2_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_14_s.mat b/descriptors/avgRGB/2_14_s.mat deleted file mode 100644 index 018558c..0000000 Binary files a/descriptors/avgRGB/2_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_15_s.mat b/descriptors/avgRGB/2_15_s.mat deleted file mode 100644 index aaa4efd..0000000 Binary files a/descriptors/avgRGB/2_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_16_s.mat b/descriptors/avgRGB/2_16_s.mat deleted file mode 100644 index c0bd43f..0000000 Binary files a/descriptors/avgRGB/2_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_17_s.mat b/descriptors/avgRGB/2_17_s.mat deleted file mode 100644 index 4fdd022..0000000 Binary files a/descriptors/avgRGB/2_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_18_s.mat b/descriptors/avgRGB/2_18_s.mat deleted file mode 100644 index 60c8456..0000000 Binary files a/descriptors/avgRGB/2_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_19_s.mat b/descriptors/avgRGB/2_19_s.mat deleted file mode 100644 index d108204..0000000 Binary files a/descriptors/avgRGB/2_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_1_s.mat b/descriptors/avgRGB/2_1_s.mat deleted file mode 100644 index 5d752eb..0000000 Binary files a/descriptors/avgRGB/2_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_20_s.mat b/descriptors/avgRGB/2_20_s.mat deleted file mode 100644 index a6cc533..0000000 Binary files a/descriptors/avgRGB/2_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_21_s.mat b/descriptors/avgRGB/2_21_s.mat deleted file mode 100644 index e78b215..0000000 Binary files a/descriptors/avgRGB/2_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_22_s.mat b/descriptors/avgRGB/2_22_s.mat deleted file mode 100644 index 5cb401a..0000000 Binary files a/descriptors/avgRGB/2_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_23_s.mat b/descriptors/avgRGB/2_23_s.mat deleted file mode 100644 index 711ab13..0000000 Binary files a/descriptors/avgRGB/2_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_24_s.mat b/descriptors/avgRGB/2_24_s.mat deleted file mode 100644 index e28d702..0000000 Binary files a/descriptors/avgRGB/2_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_25_s.mat b/descriptors/avgRGB/2_25_s.mat deleted file mode 100644 index cebb1ad..0000000 Binary files a/descriptors/avgRGB/2_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_26_s.mat b/descriptors/avgRGB/2_26_s.mat deleted file mode 100644 index 9c47f04..0000000 Binary files a/descriptors/avgRGB/2_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_27_s.mat b/descriptors/avgRGB/2_27_s.mat deleted file mode 100644 index 3dafeb1..0000000 Binary files a/descriptors/avgRGB/2_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_28_s.mat b/descriptors/avgRGB/2_28_s.mat deleted file mode 100644 index 26800ac..0000000 Binary files a/descriptors/avgRGB/2_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_29_s.mat b/descriptors/avgRGB/2_29_s.mat deleted file mode 100644 index 53e8334..0000000 Binary files a/descriptors/avgRGB/2_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_2_s.mat b/descriptors/avgRGB/2_2_s.mat deleted file mode 100644 index 10f0e55..0000000 Binary files a/descriptors/avgRGB/2_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_30_s.mat b/descriptors/avgRGB/2_30_s.mat deleted file mode 100644 index cf0a38f..0000000 Binary files a/descriptors/avgRGB/2_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_3_s.mat b/descriptors/avgRGB/2_3_s.mat deleted file mode 100644 index 30173df..0000000 Binary files a/descriptors/avgRGB/2_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_4_s.mat b/descriptors/avgRGB/2_4_s.mat deleted file mode 100644 index 1bb03cc..0000000 Binary files a/descriptors/avgRGB/2_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_5_s.mat b/descriptors/avgRGB/2_5_s.mat deleted file mode 100644 index 292749b..0000000 Binary files a/descriptors/avgRGB/2_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_6_s.mat b/descriptors/avgRGB/2_6_s.mat deleted file mode 100644 index 0615720..0000000 Binary files a/descriptors/avgRGB/2_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_7_s.mat b/descriptors/avgRGB/2_7_s.mat deleted file mode 100644 index f64fa4b..0000000 Binary files a/descriptors/avgRGB/2_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_8_s.mat b/descriptors/avgRGB/2_8_s.mat deleted file mode 100644 index 64a7ce1..0000000 Binary files a/descriptors/avgRGB/2_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/2_9_s.mat b/descriptors/avgRGB/2_9_s.mat deleted file mode 100644 index efa61df..0000000 Binary files a/descriptors/avgRGB/2_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_10_s.mat b/descriptors/avgRGB/3_10_s.mat deleted file mode 100644 index b6dc0aa..0000000 Binary files a/descriptors/avgRGB/3_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_11_s.mat b/descriptors/avgRGB/3_11_s.mat deleted file mode 100644 index b505ccc..0000000 Binary files a/descriptors/avgRGB/3_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_12_s.mat b/descriptors/avgRGB/3_12_s.mat deleted file mode 100644 index 7136421..0000000 Binary files a/descriptors/avgRGB/3_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_13_s.mat b/descriptors/avgRGB/3_13_s.mat deleted file mode 100644 index 7099707..0000000 Binary files a/descriptors/avgRGB/3_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_14_s.mat b/descriptors/avgRGB/3_14_s.mat deleted file mode 100644 index b64b2b1..0000000 Binary files a/descriptors/avgRGB/3_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_15_s.mat b/descriptors/avgRGB/3_15_s.mat deleted file mode 100644 index a2a506d..0000000 Binary files a/descriptors/avgRGB/3_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_16_s.mat b/descriptors/avgRGB/3_16_s.mat deleted file mode 100644 index 08bbf65..0000000 Binary files a/descriptors/avgRGB/3_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_17_s.mat b/descriptors/avgRGB/3_17_s.mat deleted file mode 100644 index edb67d4..0000000 Binary files a/descriptors/avgRGB/3_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_18_s.mat b/descriptors/avgRGB/3_18_s.mat deleted file mode 100644 index 5dc734f..0000000 Binary files a/descriptors/avgRGB/3_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_19_s.mat b/descriptors/avgRGB/3_19_s.mat deleted file mode 100644 index 17a76c0..0000000 Binary files a/descriptors/avgRGB/3_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_1_s.mat b/descriptors/avgRGB/3_1_s.mat deleted file mode 100644 index dde2aed..0000000 Binary files a/descriptors/avgRGB/3_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_20_s.mat b/descriptors/avgRGB/3_20_s.mat deleted file mode 100644 index 5a4f39e..0000000 Binary files a/descriptors/avgRGB/3_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_21_s.mat b/descriptors/avgRGB/3_21_s.mat deleted file mode 100644 index 406d55e..0000000 Binary files a/descriptors/avgRGB/3_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_22_s.mat b/descriptors/avgRGB/3_22_s.mat deleted file mode 100644 index 4324bfa..0000000 Binary files a/descriptors/avgRGB/3_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_23_s.mat b/descriptors/avgRGB/3_23_s.mat deleted file mode 100644 index 3f073ed..0000000 Binary files a/descriptors/avgRGB/3_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_24_s.mat b/descriptors/avgRGB/3_24_s.mat deleted file mode 100644 index 324da3f..0000000 Binary files a/descriptors/avgRGB/3_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_25_s.mat b/descriptors/avgRGB/3_25_s.mat deleted file mode 100644 index 8b6b196..0000000 Binary files a/descriptors/avgRGB/3_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_26_s.mat b/descriptors/avgRGB/3_26_s.mat deleted file mode 100644 index 83bcdf3..0000000 Binary files a/descriptors/avgRGB/3_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_27_s.mat b/descriptors/avgRGB/3_27_s.mat deleted file mode 100644 index 0f777fc..0000000 Binary files a/descriptors/avgRGB/3_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_28_s.mat b/descriptors/avgRGB/3_28_s.mat deleted file mode 100644 index 83b1f50..0000000 Binary files a/descriptors/avgRGB/3_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_29_s.mat b/descriptors/avgRGB/3_29_s.mat deleted file mode 100644 index 42ecb61..0000000 Binary files a/descriptors/avgRGB/3_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_2_s.mat b/descriptors/avgRGB/3_2_s.mat deleted file mode 100644 index 6ad6a3b..0000000 Binary files a/descriptors/avgRGB/3_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_30_s.mat b/descriptors/avgRGB/3_30_s.mat deleted file mode 100644 index e1771a1..0000000 Binary files a/descriptors/avgRGB/3_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_3_s.mat b/descriptors/avgRGB/3_3_s.mat deleted file mode 100644 index b9594ca..0000000 Binary files a/descriptors/avgRGB/3_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_4_s.mat b/descriptors/avgRGB/3_4_s.mat deleted file mode 100644 index 920331d..0000000 Binary files a/descriptors/avgRGB/3_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_5_s.mat b/descriptors/avgRGB/3_5_s.mat deleted file mode 100644 index bb95ae7..0000000 Binary files a/descriptors/avgRGB/3_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_6_s.mat b/descriptors/avgRGB/3_6_s.mat deleted file mode 100644 index 55e9cde..0000000 Binary files a/descriptors/avgRGB/3_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_7_s.mat b/descriptors/avgRGB/3_7_s.mat deleted file mode 100644 index b3697ac..0000000 Binary files a/descriptors/avgRGB/3_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_8_s.mat b/descriptors/avgRGB/3_8_s.mat deleted file mode 100644 index e14bf4e..0000000 Binary files a/descriptors/avgRGB/3_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/3_9_s.mat b/descriptors/avgRGB/3_9_s.mat deleted file mode 100644 index 41c4581..0000000 Binary files a/descriptors/avgRGB/3_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_10_s.mat b/descriptors/avgRGB/4_10_s.mat deleted file mode 100644 index f962f8e..0000000 Binary files a/descriptors/avgRGB/4_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_11_s.mat b/descriptors/avgRGB/4_11_s.mat deleted file mode 100644 index 1a68ca4..0000000 Binary files a/descriptors/avgRGB/4_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_12_s.mat b/descriptors/avgRGB/4_12_s.mat deleted file mode 100644 index c420af6..0000000 Binary files a/descriptors/avgRGB/4_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_13_s.mat b/descriptors/avgRGB/4_13_s.mat deleted file mode 100644 index a869ced..0000000 Binary files a/descriptors/avgRGB/4_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_14_s.mat b/descriptors/avgRGB/4_14_s.mat deleted file mode 100644 index e220ff9..0000000 Binary files a/descriptors/avgRGB/4_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_15_s.mat b/descriptors/avgRGB/4_15_s.mat deleted file mode 100644 index e4aa724..0000000 Binary files a/descriptors/avgRGB/4_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_16_s.mat b/descriptors/avgRGB/4_16_s.mat deleted file mode 100644 index a73f30d..0000000 Binary files a/descriptors/avgRGB/4_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_17_s.mat b/descriptors/avgRGB/4_17_s.mat deleted file mode 100644 index af23639..0000000 Binary files a/descriptors/avgRGB/4_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_18_s.mat b/descriptors/avgRGB/4_18_s.mat deleted file mode 100644 index 226265c..0000000 Binary files a/descriptors/avgRGB/4_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_19_s.mat b/descriptors/avgRGB/4_19_s.mat deleted file mode 100644 index f473663..0000000 Binary files a/descriptors/avgRGB/4_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_1_s.mat b/descriptors/avgRGB/4_1_s.mat deleted file mode 100644 index 080a7db..0000000 Binary files a/descriptors/avgRGB/4_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_20_s.mat b/descriptors/avgRGB/4_20_s.mat deleted file mode 100644 index 57651a7..0000000 Binary files a/descriptors/avgRGB/4_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_21_s.mat b/descriptors/avgRGB/4_21_s.mat deleted file mode 100644 index 0e2e5e3..0000000 Binary files a/descriptors/avgRGB/4_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_22_s.mat b/descriptors/avgRGB/4_22_s.mat deleted file mode 100644 index 813a09f..0000000 Binary files a/descriptors/avgRGB/4_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_23_s.mat b/descriptors/avgRGB/4_23_s.mat deleted file mode 100644 index 41a1b94..0000000 Binary files a/descriptors/avgRGB/4_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_24_s.mat b/descriptors/avgRGB/4_24_s.mat deleted file mode 100644 index f6eb307..0000000 Binary files a/descriptors/avgRGB/4_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_25_s.mat b/descriptors/avgRGB/4_25_s.mat deleted file mode 100644 index e6b9057..0000000 Binary files a/descriptors/avgRGB/4_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_26_s.mat b/descriptors/avgRGB/4_26_s.mat deleted file mode 100644 index fe036d6..0000000 Binary files a/descriptors/avgRGB/4_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_27_s.mat b/descriptors/avgRGB/4_27_s.mat deleted file mode 100644 index c11cb0d..0000000 Binary files a/descriptors/avgRGB/4_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_28_s.mat b/descriptors/avgRGB/4_28_s.mat deleted file mode 100644 index 422200e..0000000 Binary files a/descriptors/avgRGB/4_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_29_s.mat b/descriptors/avgRGB/4_29_s.mat deleted file mode 100644 index 6cc2655..0000000 Binary files a/descriptors/avgRGB/4_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_2_s.mat b/descriptors/avgRGB/4_2_s.mat deleted file mode 100644 index a03e472..0000000 Binary files a/descriptors/avgRGB/4_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_30_s.mat b/descriptors/avgRGB/4_30_s.mat deleted file mode 100644 index f34cbc3..0000000 Binary files a/descriptors/avgRGB/4_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_3_s.mat b/descriptors/avgRGB/4_3_s.mat deleted file mode 100644 index 3eb2871..0000000 Binary files a/descriptors/avgRGB/4_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_4_s.mat b/descriptors/avgRGB/4_4_s.mat deleted file mode 100644 index fe53952..0000000 Binary files a/descriptors/avgRGB/4_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_5_s.mat b/descriptors/avgRGB/4_5_s.mat deleted file mode 100644 index 639b78a..0000000 Binary files a/descriptors/avgRGB/4_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_6_s.mat b/descriptors/avgRGB/4_6_s.mat deleted file mode 100644 index ffa2869..0000000 Binary files a/descriptors/avgRGB/4_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_7_s.mat b/descriptors/avgRGB/4_7_s.mat deleted file mode 100644 index 8c7d033..0000000 Binary files a/descriptors/avgRGB/4_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_8_s.mat b/descriptors/avgRGB/4_8_s.mat deleted file mode 100644 index dd19bb0..0000000 Binary files a/descriptors/avgRGB/4_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/4_9_s.mat b/descriptors/avgRGB/4_9_s.mat deleted file mode 100644 index 5509f08..0000000 Binary files a/descriptors/avgRGB/4_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_10_s.mat b/descriptors/avgRGB/5_10_s.mat deleted file mode 100644 index 92adca7..0000000 Binary files a/descriptors/avgRGB/5_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_11_s.mat b/descriptors/avgRGB/5_11_s.mat deleted file mode 100644 index ead56d9..0000000 Binary files a/descriptors/avgRGB/5_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_12_s.mat b/descriptors/avgRGB/5_12_s.mat deleted file mode 100644 index 8074870..0000000 Binary files a/descriptors/avgRGB/5_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_13_s.mat b/descriptors/avgRGB/5_13_s.mat deleted file mode 100644 index f16fb75..0000000 Binary files a/descriptors/avgRGB/5_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_14_s.mat b/descriptors/avgRGB/5_14_s.mat deleted file mode 100644 index 3e07c03..0000000 Binary files a/descriptors/avgRGB/5_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_15_s.mat b/descriptors/avgRGB/5_15_s.mat deleted file mode 100644 index 2e7fd58..0000000 Binary files a/descriptors/avgRGB/5_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_16_s.mat b/descriptors/avgRGB/5_16_s.mat deleted file mode 100644 index 65bbf47..0000000 Binary files a/descriptors/avgRGB/5_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_17_s.mat b/descriptors/avgRGB/5_17_s.mat deleted file mode 100644 index 82c6652..0000000 Binary files a/descriptors/avgRGB/5_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_18_s.mat b/descriptors/avgRGB/5_18_s.mat deleted file mode 100644 index 2b41479..0000000 Binary files a/descriptors/avgRGB/5_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_19_s.mat b/descriptors/avgRGB/5_19_s.mat deleted file mode 100644 index d421d58..0000000 Binary files a/descriptors/avgRGB/5_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_1_s.mat b/descriptors/avgRGB/5_1_s.mat deleted file mode 100644 index 420f4d2..0000000 Binary files a/descriptors/avgRGB/5_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_20_s.mat b/descriptors/avgRGB/5_20_s.mat deleted file mode 100644 index b165f3e..0000000 Binary files a/descriptors/avgRGB/5_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_21_s.mat b/descriptors/avgRGB/5_21_s.mat deleted file mode 100644 index c094df5..0000000 Binary files a/descriptors/avgRGB/5_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_22_s.mat b/descriptors/avgRGB/5_22_s.mat deleted file mode 100644 index af0d5ee..0000000 Binary files a/descriptors/avgRGB/5_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_23_s.mat b/descriptors/avgRGB/5_23_s.mat deleted file mode 100644 index 6b27af8..0000000 Binary files a/descriptors/avgRGB/5_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_24_s.mat b/descriptors/avgRGB/5_24_s.mat deleted file mode 100644 index d27647a..0000000 Binary files a/descriptors/avgRGB/5_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_25_s.mat b/descriptors/avgRGB/5_25_s.mat deleted file mode 100644 index 1c38eda..0000000 Binary files a/descriptors/avgRGB/5_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_26_s.mat b/descriptors/avgRGB/5_26_s.mat deleted file mode 100644 index 1256a13..0000000 Binary files a/descriptors/avgRGB/5_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_27_s.mat b/descriptors/avgRGB/5_27_s.mat deleted file mode 100644 index 5268428..0000000 Binary files a/descriptors/avgRGB/5_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_28_s.mat b/descriptors/avgRGB/5_28_s.mat deleted file mode 100644 index 37e0839..0000000 Binary files a/descriptors/avgRGB/5_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_29_s.mat b/descriptors/avgRGB/5_29_s.mat deleted file mode 100644 index bfc4935..0000000 Binary files a/descriptors/avgRGB/5_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_2_s.mat b/descriptors/avgRGB/5_2_s.mat deleted file mode 100644 index 1905199..0000000 Binary files a/descriptors/avgRGB/5_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_30_s.mat b/descriptors/avgRGB/5_30_s.mat deleted file mode 100644 index 581aa20..0000000 Binary files a/descriptors/avgRGB/5_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_3_s.mat b/descriptors/avgRGB/5_3_s.mat deleted file mode 100644 index 7b358fc..0000000 Binary files a/descriptors/avgRGB/5_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_4_s.mat b/descriptors/avgRGB/5_4_s.mat deleted file mode 100644 index 1b4ba19..0000000 Binary files a/descriptors/avgRGB/5_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_5_s.mat b/descriptors/avgRGB/5_5_s.mat deleted file mode 100644 index 50a5239..0000000 Binary files a/descriptors/avgRGB/5_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_6_s.mat b/descriptors/avgRGB/5_6_s.mat deleted file mode 100644 index 2d14f6f..0000000 Binary files a/descriptors/avgRGB/5_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_7_s.mat b/descriptors/avgRGB/5_7_s.mat deleted file mode 100644 index 954a647..0000000 Binary files a/descriptors/avgRGB/5_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_8_s.mat b/descriptors/avgRGB/5_8_s.mat deleted file mode 100644 index a5e9784..0000000 Binary files a/descriptors/avgRGB/5_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/5_9_s.mat b/descriptors/avgRGB/5_9_s.mat deleted file mode 100644 index 5498715..0000000 Binary files a/descriptors/avgRGB/5_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_10_s.mat b/descriptors/avgRGB/6_10_s.mat deleted file mode 100644 index dbf75c4..0000000 Binary files a/descriptors/avgRGB/6_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_11_s.mat b/descriptors/avgRGB/6_11_s.mat deleted file mode 100644 index bc8763f..0000000 Binary files a/descriptors/avgRGB/6_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_12_s.mat b/descriptors/avgRGB/6_12_s.mat deleted file mode 100644 index d0f3870..0000000 Binary files a/descriptors/avgRGB/6_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_13_s.mat b/descriptors/avgRGB/6_13_s.mat deleted file mode 100644 index 7a2c706..0000000 Binary files a/descriptors/avgRGB/6_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_14_s.mat b/descriptors/avgRGB/6_14_s.mat deleted file mode 100644 index 2e2a921..0000000 Binary files a/descriptors/avgRGB/6_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_15_s.mat b/descriptors/avgRGB/6_15_s.mat deleted file mode 100644 index 908168e..0000000 Binary files a/descriptors/avgRGB/6_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_16_s.mat b/descriptors/avgRGB/6_16_s.mat deleted file mode 100644 index 103b54c..0000000 Binary files a/descriptors/avgRGB/6_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_17_s.mat b/descriptors/avgRGB/6_17_s.mat deleted file mode 100644 index 429297a..0000000 Binary files a/descriptors/avgRGB/6_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_18_s.mat b/descriptors/avgRGB/6_18_s.mat deleted file mode 100644 index 13f27ae..0000000 Binary files a/descriptors/avgRGB/6_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_19_s.mat b/descriptors/avgRGB/6_19_s.mat deleted file mode 100644 index b09b0d6..0000000 Binary files a/descriptors/avgRGB/6_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_1_s.mat b/descriptors/avgRGB/6_1_s.mat deleted file mode 100644 index 357b597..0000000 Binary files a/descriptors/avgRGB/6_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_20_s.mat b/descriptors/avgRGB/6_20_s.mat deleted file mode 100644 index c76fc0f..0000000 Binary files a/descriptors/avgRGB/6_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_21_s.mat b/descriptors/avgRGB/6_21_s.mat deleted file mode 100644 index 6fa0017..0000000 Binary files a/descriptors/avgRGB/6_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_22_s.mat b/descriptors/avgRGB/6_22_s.mat deleted file mode 100644 index 37ef7b6..0000000 Binary files a/descriptors/avgRGB/6_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_23_s.mat b/descriptors/avgRGB/6_23_s.mat deleted file mode 100644 index 5e18300..0000000 Binary files a/descriptors/avgRGB/6_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_24_s.mat b/descriptors/avgRGB/6_24_s.mat deleted file mode 100644 index e60814f..0000000 Binary files a/descriptors/avgRGB/6_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_25_s.mat b/descriptors/avgRGB/6_25_s.mat deleted file mode 100644 index a22a713..0000000 Binary files a/descriptors/avgRGB/6_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_26_s.mat b/descriptors/avgRGB/6_26_s.mat deleted file mode 100644 index 268faee..0000000 Binary files a/descriptors/avgRGB/6_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_27_s.mat b/descriptors/avgRGB/6_27_s.mat deleted file mode 100644 index d1dcaaf..0000000 Binary files a/descriptors/avgRGB/6_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_28_s.mat b/descriptors/avgRGB/6_28_s.mat deleted file mode 100644 index d7c7891..0000000 Binary files a/descriptors/avgRGB/6_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_29_s.mat b/descriptors/avgRGB/6_29_s.mat deleted file mode 100644 index 9b87c54..0000000 Binary files a/descriptors/avgRGB/6_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_2_s.mat b/descriptors/avgRGB/6_2_s.mat deleted file mode 100644 index d7ac2cc..0000000 Binary files a/descriptors/avgRGB/6_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_30_s.mat b/descriptors/avgRGB/6_30_s.mat deleted file mode 100644 index 614b73b..0000000 Binary files a/descriptors/avgRGB/6_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_3_s.mat b/descriptors/avgRGB/6_3_s.mat deleted file mode 100644 index c44219f..0000000 Binary files a/descriptors/avgRGB/6_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_4_s.mat b/descriptors/avgRGB/6_4_s.mat deleted file mode 100644 index 583573f..0000000 Binary files a/descriptors/avgRGB/6_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_5_s.mat b/descriptors/avgRGB/6_5_s.mat deleted file mode 100644 index c5f20c4..0000000 Binary files a/descriptors/avgRGB/6_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_6_s.mat b/descriptors/avgRGB/6_6_s.mat deleted file mode 100644 index 1a485c2..0000000 Binary files a/descriptors/avgRGB/6_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_7_s.mat b/descriptors/avgRGB/6_7_s.mat deleted file mode 100644 index 94664c6..0000000 Binary files a/descriptors/avgRGB/6_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_8_s.mat b/descriptors/avgRGB/6_8_s.mat deleted file mode 100644 index 1f4823d..0000000 Binary files a/descriptors/avgRGB/6_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/6_9_s.mat b/descriptors/avgRGB/6_9_s.mat deleted file mode 100644 index c991eba..0000000 Binary files a/descriptors/avgRGB/6_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_10_s.mat b/descriptors/avgRGB/7_10_s.mat deleted file mode 100644 index 661f8f8..0000000 Binary files a/descriptors/avgRGB/7_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_11_s.mat b/descriptors/avgRGB/7_11_s.mat deleted file mode 100644 index 987fffb..0000000 Binary files a/descriptors/avgRGB/7_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_12_s.mat b/descriptors/avgRGB/7_12_s.mat deleted file mode 100644 index 7fdb11c..0000000 Binary files a/descriptors/avgRGB/7_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_13_s.mat b/descriptors/avgRGB/7_13_s.mat deleted file mode 100644 index b8f289e..0000000 Binary files a/descriptors/avgRGB/7_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_14_s.mat b/descriptors/avgRGB/7_14_s.mat deleted file mode 100644 index a4bf75c..0000000 Binary files a/descriptors/avgRGB/7_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_15_s.mat b/descriptors/avgRGB/7_15_s.mat deleted file mode 100644 index 73507f9..0000000 Binary files a/descriptors/avgRGB/7_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_16_s.mat b/descriptors/avgRGB/7_16_s.mat deleted file mode 100644 index 5d32f98..0000000 Binary files a/descriptors/avgRGB/7_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_17_s.mat b/descriptors/avgRGB/7_17_s.mat deleted file mode 100644 index 6d56e8d..0000000 Binary files a/descriptors/avgRGB/7_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_18_s.mat b/descriptors/avgRGB/7_18_s.mat deleted file mode 100644 index 3a8d8fd..0000000 Binary files a/descriptors/avgRGB/7_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_19_s.mat b/descriptors/avgRGB/7_19_s.mat deleted file mode 100644 index c985536..0000000 Binary files a/descriptors/avgRGB/7_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_1_s.mat b/descriptors/avgRGB/7_1_s.mat deleted file mode 100644 index 0fddb7f..0000000 Binary files a/descriptors/avgRGB/7_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_20_s.mat b/descriptors/avgRGB/7_20_s.mat deleted file mode 100644 index c36dd2f..0000000 Binary files a/descriptors/avgRGB/7_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_21_s.mat b/descriptors/avgRGB/7_21_s.mat deleted file mode 100644 index 491c967..0000000 Binary files a/descriptors/avgRGB/7_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_22_s.mat b/descriptors/avgRGB/7_22_s.mat deleted file mode 100644 index 1f7d382..0000000 Binary files a/descriptors/avgRGB/7_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_23_s.mat b/descriptors/avgRGB/7_23_s.mat deleted file mode 100644 index 95acf6a..0000000 Binary files a/descriptors/avgRGB/7_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_24_s.mat b/descriptors/avgRGB/7_24_s.mat deleted file mode 100644 index 7b9fa82..0000000 Binary files a/descriptors/avgRGB/7_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_25_s.mat b/descriptors/avgRGB/7_25_s.mat deleted file mode 100644 index 5a44bb8..0000000 Binary files a/descriptors/avgRGB/7_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_26_s.mat b/descriptors/avgRGB/7_26_s.mat deleted file mode 100644 index def45d5..0000000 Binary files a/descriptors/avgRGB/7_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_27_s.mat b/descriptors/avgRGB/7_27_s.mat deleted file mode 100644 index f0a6bfd..0000000 Binary files a/descriptors/avgRGB/7_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_28_s.mat b/descriptors/avgRGB/7_28_s.mat deleted file mode 100644 index 14e6b8c..0000000 Binary files a/descriptors/avgRGB/7_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_29_s.mat b/descriptors/avgRGB/7_29_s.mat deleted file mode 100644 index 0ccea7a..0000000 Binary files a/descriptors/avgRGB/7_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_2_s.mat b/descriptors/avgRGB/7_2_s.mat deleted file mode 100644 index 2abf6af..0000000 Binary files a/descriptors/avgRGB/7_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_30_s.mat b/descriptors/avgRGB/7_30_s.mat deleted file mode 100644 index 166032b..0000000 Binary files a/descriptors/avgRGB/7_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_3_s.mat b/descriptors/avgRGB/7_3_s.mat deleted file mode 100644 index 49e624e..0000000 Binary files a/descriptors/avgRGB/7_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_4_s.mat b/descriptors/avgRGB/7_4_s.mat deleted file mode 100644 index 4acc0c0..0000000 Binary files a/descriptors/avgRGB/7_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_5_s.mat b/descriptors/avgRGB/7_5_s.mat deleted file mode 100644 index 4a24acc..0000000 Binary files a/descriptors/avgRGB/7_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_6_s.mat b/descriptors/avgRGB/7_6_s.mat deleted file mode 100644 index 6b663d6..0000000 Binary files a/descriptors/avgRGB/7_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_7_s.mat b/descriptors/avgRGB/7_7_s.mat deleted file mode 100644 index 7ac294e..0000000 Binary files a/descriptors/avgRGB/7_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_8_s.mat b/descriptors/avgRGB/7_8_s.mat deleted file mode 100644 index f697771..0000000 Binary files a/descriptors/avgRGB/7_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/7_9_s.mat b/descriptors/avgRGB/7_9_s.mat deleted file mode 100644 index 2ac53e0..0000000 Binary files a/descriptors/avgRGB/7_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_10_s.mat b/descriptors/avgRGB/8_10_s.mat deleted file mode 100644 index bc5603a..0000000 Binary files a/descriptors/avgRGB/8_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_11_s.mat b/descriptors/avgRGB/8_11_s.mat deleted file mode 100644 index 578ea8b..0000000 Binary files a/descriptors/avgRGB/8_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_12_s.mat b/descriptors/avgRGB/8_12_s.mat deleted file mode 100644 index 71b0964..0000000 Binary files a/descriptors/avgRGB/8_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_13_s.mat b/descriptors/avgRGB/8_13_s.mat deleted file mode 100644 index 0493f95..0000000 Binary files a/descriptors/avgRGB/8_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_14_s.mat b/descriptors/avgRGB/8_14_s.mat deleted file mode 100644 index 264ef23..0000000 Binary files a/descriptors/avgRGB/8_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_15_s.mat b/descriptors/avgRGB/8_15_s.mat deleted file mode 100644 index 1b72f1b..0000000 Binary files a/descriptors/avgRGB/8_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_16_s.mat b/descriptors/avgRGB/8_16_s.mat deleted file mode 100644 index c1c748f..0000000 Binary files a/descriptors/avgRGB/8_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_17_s.mat b/descriptors/avgRGB/8_17_s.mat deleted file mode 100644 index a1d2288..0000000 Binary files a/descriptors/avgRGB/8_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_18_s.mat b/descriptors/avgRGB/8_18_s.mat deleted file mode 100644 index 3644378..0000000 Binary files a/descriptors/avgRGB/8_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_19_s.mat b/descriptors/avgRGB/8_19_s.mat deleted file mode 100644 index ee6e4d1..0000000 Binary files a/descriptors/avgRGB/8_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_1_s.mat b/descriptors/avgRGB/8_1_s.mat deleted file mode 100644 index 186715a..0000000 Binary files a/descriptors/avgRGB/8_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_20_s.mat b/descriptors/avgRGB/8_20_s.mat deleted file mode 100644 index 1f6a21f..0000000 Binary files a/descriptors/avgRGB/8_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_21_s.mat b/descriptors/avgRGB/8_21_s.mat deleted file mode 100644 index b51a614..0000000 Binary files a/descriptors/avgRGB/8_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_22_s.mat b/descriptors/avgRGB/8_22_s.mat deleted file mode 100644 index a4e4175..0000000 Binary files a/descriptors/avgRGB/8_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_23_s.mat b/descriptors/avgRGB/8_23_s.mat deleted file mode 100644 index 9297664..0000000 Binary files a/descriptors/avgRGB/8_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_24_s.mat b/descriptors/avgRGB/8_24_s.mat deleted file mode 100644 index e2fa70e..0000000 Binary files a/descriptors/avgRGB/8_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_25_s.mat b/descriptors/avgRGB/8_25_s.mat deleted file mode 100644 index eb82e6b..0000000 Binary files a/descriptors/avgRGB/8_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_26_s.mat b/descriptors/avgRGB/8_26_s.mat deleted file mode 100644 index 8717a69..0000000 Binary files a/descriptors/avgRGB/8_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_27_s.mat b/descriptors/avgRGB/8_27_s.mat deleted file mode 100644 index 1ad006c..0000000 Binary files a/descriptors/avgRGB/8_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_28_s.mat b/descriptors/avgRGB/8_28_s.mat deleted file mode 100644 index 4ab3ed3..0000000 Binary files a/descriptors/avgRGB/8_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_29_s.mat b/descriptors/avgRGB/8_29_s.mat deleted file mode 100644 index 57e08e2..0000000 Binary files a/descriptors/avgRGB/8_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_2_s.mat b/descriptors/avgRGB/8_2_s.mat deleted file mode 100644 index 84d5215..0000000 Binary files a/descriptors/avgRGB/8_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_30_s.mat b/descriptors/avgRGB/8_30_s.mat deleted file mode 100644 index ab02330..0000000 Binary files a/descriptors/avgRGB/8_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_3_s.mat b/descriptors/avgRGB/8_3_s.mat deleted file mode 100644 index c5e6aa9..0000000 Binary files a/descriptors/avgRGB/8_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_4_s.mat b/descriptors/avgRGB/8_4_s.mat deleted file mode 100644 index 833251f..0000000 Binary files a/descriptors/avgRGB/8_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_5_s.mat b/descriptors/avgRGB/8_5_s.mat deleted file mode 100644 index f04e584..0000000 Binary files a/descriptors/avgRGB/8_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_6_s.mat b/descriptors/avgRGB/8_6_s.mat deleted file mode 100644 index 2fdc622..0000000 Binary files a/descriptors/avgRGB/8_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_7_s.mat b/descriptors/avgRGB/8_7_s.mat deleted file mode 100644 index 44e131d..0000000 Binary files a/descriptors/avgRGB/8_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_8_s.mat b/descriptors/avgRGB/8_8_s.mat deleted file mode 100644 index fdb96af..0000000 Binary files a/descriptors/avgRGB/8_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/8_9_s.mat b/descriptors/avgRGB/8_9_s.mat deleted file mode 100644 index 98e8114..0000000 Binary files a/descriptors/avgRGB/8_9_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_10_s.mat b/descriptors/avgRGB/9_10_s.mat deleted file mode 100644 index cf51908..0000000 Binary files a/descriptors/avgRGB/9_10_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_11_s.mat b/descriptors/avgRGB/9_11_s.mat deleted file mode 100644 index a8fdce5..0000000 Binary files a/descriptors/avgRGB/9_11_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_12_s.mat b/descriptors/avgRGB/9_12_s.mat deleted file mode 100644 index ce26390..0000000 Binary files a/descriptors/avgRGB/9_12_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_13_s.mat b/descriptors/avgRGB/9_13_s.mat deleted file mode 100644 index b203772..0000000 Binary files a/descriptors/avgRGB/9_13_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_14_s.mat b/descriptors/avgRGB/9_14_s.mat deleted file mode 100644 index 904955c..0000000 Binary files a/descriptors/avgRGB/9_14_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_15_s.mat b/descriptors/avgRGB/9_15_s.mat deleted file mode 100644 index 648275e..0000000 Binary files a/descriptors/avgRGB/9_15_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_16_s.mat b/descriptors/avgRGB/9_16_s.mat deleted file mode 100644 index 9b7399f..0000000 Binary files a/descriptors/avgRGB/9_16_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_17_s.mat b/descriptors/avgRGB/9_17_s.mat deleted file mode 100644 index f2cce3e..0000000 Binary files a/descriptors/avgRGB/9_17_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_18_s.mat b/descriptors/avgRGB/9_18_s.mat deleted file mode 100644 index 164c3de..0000000 Binary files a/descriptors/avgRGB/9_18_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_19_s.mat b/descriptors/avgRGB/9_19_s.mat deleted file mode 100644 index a7ab3f8..0000000 Binary files a/descriptors/avgRGB/9_19_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_1_s.mat b/descriptors/avgRGB/9_1_s.mat deleted file mode 100644 index fdbd969..0000000 Binary files a/descriptors/avgRGB/9_1_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_20_s.mat b/descriptors/avgRGB/9_20_s.mat deleted file mode 100644 index 03f96b2..0000000 Binary files a/descriptors/avgRGB/9_20_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_21_s.mat b/descriptors/avgRGB/9_21_s.mat deleted file mode 100644 index ee6782e..0000000 Binary files a/descriptors/avgRGB/9_21_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_22_s.mat b/descriptors/avgRGB/9_22_s.mat deleted file mode 100644 index 209c7fc..0000000 Binary files a/descriptors/avgRGB/9_22_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_23_s.mat b/descriptors/avgRGB/9_23_s.mat deleted file mode 100644 index cc54ea7..0000000 Binary files a/descriptors/avgRGB/9_23_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_24_s.mat b/descriptors/avgRGB/9_24_s.mat deleted file mode 100644 index 154affd..0000000 Binary files a/descriptors/avgRGB/9_24_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_25_s.mat b/descriptors/avgRGB/9_25_s.mat deleted file mode 100644 index 8dd3a14..0000000 Binary files a/descriptors/avgRGB/9_25_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_26_s.mat b/descriptors/avgRGB/9_26_s.mat deleted file mode 100644 index 6cc415f..0000000 Binary files a/descriptors/avgRGB/9_26_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_27_s.mat b/descriptors/avgRGB/9_27_s.mat deleted file mode 100644 index 08a90a2..0000000 Binary files a/descriptors/avgRGB/9_27_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_28_s.mat b/descriptors/avgRGB/9_28_s.mat deleted file mode 100644 index 225aaad..0000000 Binary files a/descriptors/avgRGB/9_28_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_29_s.mat b/descriptors/avgRGB/9_29_s.mat deleted file mode 100644 index ad20bad..0000000 Binary files a/descriptors/avgRGB/9_29_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_2_s.mat b/descriptors/avgRGB/9_2_s.mat deleted file mode 100644 index 519781d..0000000 Binary files a/descriptors/avgRGB/9_2_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_30_s.mat b/descriptors/avgRGB/9_30_s.mat deleted file mode 100644 index a0e6b25..0000000 Binary files a/descriptors/avgRGB/9_30_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_3_s.mat b/descriptors/avgRGB/9_3_s.mat deleted file mode 100644 index dc54ce2..0000000 Binary files a/descriptors/avgRGB/9_3_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_4_s.mat b/descriptors/avgRGB/9_4_s.mat deleted file mode 100644 index c338558..0000000 Binary files a/descriptors/avgRGB/9_4_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_5_s.mat b/descriptors/avgRGB/9_5_s.mat deleted file mode 100644 index 95034c7..0000000 Binary files a/descriptors/avgRGB/9_5_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_6_s.mat b/descriptors/avgRGB/9_6_s.mat deleted file mode 100644 index 6309138..0000000 Binary files a/descriptors/avgRGB/9_6_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_7_s.mat b/descriptors/avgRGB/9_7_s.mat deleted file mode 100644 index 967f709..0000000 Binary files a/descriptors/avgRGB/9_7_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_8_s.mat b/descriptors/avgRGB/9_8_s.mat deleted file mode 100644 index 9cfc63b..0000000 Binary files a/descriptors/avgRGB/9_8_s.mat and /dev/null differ diff --git a/descriptors/avgRGB/9_9_s.mat b/descriptors/avgRGB/9_9_s.mat deleted file mode 100644 index af9d2d1..0000000 Binary files a/descriptors/avgRGB/9_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_10_s.mat b/descriptors/globalRGBhisto/10_10_s.mat deleted file mode 100644 index d58ace6..0000000 Binary files a/descriptors/globalRGBhisto/10_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_11_s.mat b/descriptors/globalRGBhisto/10_11_s.mat deleted file mode 100644 index e9fbfde..0000000 Binary files a/descriptors/globalRGBhisto/10_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_12_s.mat b/descriptors/globalRGBhisto/10_12_s.mat deleted file mode 100644 index 50eb863..0000000 Binary files a/descriptors/globalRGBhisto/10_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_13_s.mat b/descriptors/globalRGBhisto/10_13_s.mat deleted file mode 100644 index a8a03e2..0000000 Binary files a/descriptors/globalRGBhisto/10_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_14_s.mat b/descriptors/globalRGBhisto/10_14_s.mat deleted file mode 100644 index 95d21f5..0000000 Binary files a/descriptors/globalRGBhisto/10_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_15_s.mat b/descriptors/globalRGBhisto/10_15_s.mat deleted file mode 100644 index e528102..0000000 Binary files a/descriptors/globalRGBhisto/10_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_16_s.mat b/descriptors/globalRGBhisto/10_16_s.mat deleted file mode 100644 index 07d3226..0000000 Binary files a/descriptors/globalRGBhisto/10_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_17_s.mat b/descriptors/globalRGBhisto/10_17_s.mat deleted file mode 100644 index c5593f9..0000000 Binary files a/descriptors/globalRGBhisto/10_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_18_s.mat b/descriptors/globalRGBhisto/10_18_s.mat deleted file mode 100644 index 4d22170..0000000 Binary files a/descriptors/globalRGBhisto/10_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_19_s.mat b/descriptors/globalRGBhisto/10_19_s.mat deleted file mode 100644 index 5e70214..0000000 Binary files a/descriptors/globalRGBhisto/10_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_1_s.mat b/descriptors/globalRGBhisto/10_1_s.mat deleted file mode 100644 index 361d820..0000000 Binary files a/descriptors/globalRGBhisto/10_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_20_s.mat b/descriptors/globalRGBhisto/10_20_s.mat deleted file mode 100644 index e585770..0000000 Binary files a/descriptors/globalRGBhisto/10_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_21_s.mat b/descriptors/globalRGBhisto/10_21_s.mat deleted file mode 100644 index 1789871..0000000 Binary files a/descriptors/globalRGBhisto/10_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_22_s.mat b/descriptors/globalRGBhisto/10_22_s.mat deleted file mode 100644 index e43ed39..0000000 Binary files a/descriptors/globalRGBhisto/10_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_23_s.mat b/descriptors/globalRGBhisto/10_23_s.mat deleted file mode 100644 index 7f748b0..0000000 Binary files a/descriptors/globalRGBhisto/10_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_24_s.mat b/descriptors/globalRGBhisto/10_24_s.mat deleted file mode 100644 index f8e4781..0000000 Binary files a/descriptors/globalRGBhisto/10_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_25_s.mat b/descriptors/globalRGBhisto/10_25_s.mat deleted file mode 100644 index aa05a2b..0000000 Binary files a/descriptors/globalRGBhisto/10_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_26_s.mat b/descriptors/globalRGBhisto/10_26_s.mat deleted file mode 100644 index 3bab6fd..0000000 Binary files a/descriptors/globalRGBhisto/10_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_27_s.mat b/descriptors/globalRGBhisto/10_27_s.mat deleted file mode 100644 index 6af5c5e..0000000 Binary files a/descriptors/globalRGBhisto/10_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_28_s.mat b/descriptors/globalRGBhisto/10_28_s.mat deleted file mode 100644 index ec40b33..0000000 Binary files a/descriptors/globalRGBhisto/10_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_29_s.mat b/descriptors/globalRGBhisto/10_29_s.mat deleted file mode 100644 index a9b8952..0000000 Binary files a/descriptors/globalRGBhisto/10_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_2_s.mat b/descriptors/globalRGBhisto/10_2_s.mat deleted file mode 100644 index 980b3dd..0000000 Binary files a/descriptors/globalRGBhisto/10_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_30_s.mat b/descriptors/globalRGBhisto/10_30_s.mat deleted file mode 100644 index d1670c1..0000000 Binary files a/descriptors/globalRGBhisto/10_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_31_s.mat b/descriptors/globalRGBhisto/10_31_s.mat deleted file mode 100644 index f5ed7a9..0000000 Binary files a/descriptors/globalRGBhisto/10_31_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_32_s.mat b/descriptors/globalRGBhisto/10_32_s.mat deleted file mode 100644 index 8ba2d25..0000000 Binary files a/descriptors/globalRGBhisto/10_32_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_3_s.mat b/descriptors/globalRGBhisto/10_3_s.mat deleted file mode 100644 index 24ad20c..0000000 Binary files a/descriptors/globalRGBhisto/10_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_4_s.mat b/descriptors/globalRGBhisto/10_4_s.mat deleted file mode 100644 index b8f7e9b..0000000 Binary files a/descriptors/globalRGBhisto/10_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_5_s.mat b/descriptors/globalRGBhisto/10_5_s.mat deleted file mode 100644 index 770a749..0000000 Binary files a/descriptors/globalRGBhisto/10_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_6_s.mat b/descriptors/globalRGBhisto/10_6_s.mat deleted file mode 100644 index bae267b..0000000 Binary files a/descriptors/globalRGBhisto/10_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_7_s.mat b/descriptors/globalRGBhisto/10_7_s.mat deleted file mode 100644 index 0851ac7..0000000 Binary files a/descriptors/globalRGBhisto/10_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_8_s.mat b/descriptors/globalRGBhisto/10_8_s.mat deleted file mode 100644 index f9075f3..0000000 Binary files a/descriptors/globalRGBhisto/10_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/10_9_s.mat b/descriptors/globalRGBhisto/10_9_s.mat deleted file mode 100644 index 5df405f..0000000 Binary files a/descriptors/globalRGBhisto/10_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_10_s.mat b/descriptors/globalRGBhisto/11_10_s.mat deleted file mode 100644 index e815ce6..0000000 Binary files a/descriptors/globalRGBhisto/11_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_11_s.mat b/descriptors/globalRGBhisto/11_11_s.mat deleted file mode 100644 index 0b9e431..0000000 Binary files a/descriptors/globalRGBhisto/11_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_12_s.mat b/descriptors/globalRGBhisto/11_12_s.mat deleted file mode 100644 index cf21ac6..0000000 Binary files a/descriptors/globalRGBhisto/11_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_13_s.mat b/descriptors/globalRGBhisto/11_13_s.mat deleted file mode 100644 index 851d4e2..0000000 Binary files a/descriptors/globalRGBhisto/11_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_14_s.mat b/descriptors/globalRGBhisto/11_14_s.mat deleted file mode 100644 index 5940ccc..0000000 Binary files a/descriptors/globalRGBhisto/11_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_15_s.mat b/descriptors/globalRGBhisto/11_15_s.mat deleted file mode 100644 index 57870d1..0000000 Binary files a/descriptors/globalRGBhisto/11_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_16_s.mat b/descriptors/globalRGBhisto/11_16_s.mat deleted file mode 100644 index 2e370be..0000000 Binary files a/descriptors/globalRGBhisto/11_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_17_s.mat b/descriptors/globalRGBhisto/11_17_s.mat deleted file mode 100644 index 78d72f3..0000000 Binary files a/descriptors/globalRGBhisto/11_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_18_s.mat b/descriptors/globalRGBhisto/11_18_s.mat deleted file mode 100644 index b58643d..0000000 Binary files a/descriptors/globalRGBhisto/11_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_19_s.mat b/descriptors/globalRGBhisto/11_19_s.mat deleted file mode 100644 index c987975..0000000 Binary files a/descriptors/globalRGBhisto/11_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_1_s.mat b/descriptors/globalRGBhisto/11_1_s.mat deleted file mode 100644 index 67cf963..0000000 Binary files a/descriptors/globalRGBhisto/11_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_20_s.mat b/descriptors/globalRGBhisto/11_20_s.mat deleted file mode 100644 index 7b382a3..0000000 Binary files a/descriptors/globalRGBhisto/11_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_21_s.mat b/descriptors/globalRGBhisto/11_21_s.mat deleted file mode 100644 index 17ec41e..0000000 Binary files a/descriptors/globalRGBhisto/11_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_22_s.mat b/descriptors/globalRGBhisto/11_22_s.mat deleted file mode 100644 index 4692087..0000000 Binary files a/descriptors/globalRGBhisto/11_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_23_s.mat b/descriptors/globalRGBhisto/11_23_s.mat deleted file mode 100644 index 33611d5..0000000 Binary files a/descriptors/globalRGBhisto/11_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_24_s.mat b/descriptors/globalRGBhisto/11_24_s.mat deleted file mode 100644 index a01c741..0000000 Binary files a/descriptors/globalRGBhisto/11_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_25_s.mat b/descriptors/globalRGBhisto/11_25_s.mat deleted file mode 100644 index 7138a6c..0000000 Binary files a/descriptors/globalRGBhisto/11_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_26_s.mat b/descriptors/globalRGBhisto/11_26_s.mat deleted file mode 100644 index 701050e..0000000 Binary files a/descriptors/globalRGBhisto/11_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_27_s.mat b/descriptors/globalRGBhisto/11_27_s.mat deleted file mode 100644 index eda89ce..0000000 Binary files a/descriptors/globalRGBhisto/11_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_28_s.mat b/descriptors/globalRGBhisto/11_28_s.mat deleted file mode 100644 index fcdf93e..0000000 Binary files a/descriptors/globalRGBhisto/11_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_29_s.mat b/descriptors/globalRGBhisto/11_29_s.mat deleted file mode 100644 index 127366e..0000000 Binary files a/descriptors/globalRGBhisto/11_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_2_s.mat b/descriptors/globalRGBhisto/11_2_s.mat deleted file mode 100644 index ea8ad25..0000000 Binary files a/descriptors/globalRGBhisto/11_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_30_s.mat b/descriptors/globalRGBhisto/11_30_s.mat deleted file mode 100644 index 32ed796..0000000 Binary files a/descriptors/globalRGBhisto/11_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_3_s.mat b/descriptors/globalRGBhisto/11_3_s.mat deleted file mode 100644 index 3fc01c8..0000000 Binary files a/descriptors/globalRGBhisto/11_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_4_s.mat b/descriptors/globalRGBhisto/11_4_s.mat deleted file mode 100644 index 3fd62ed..0000000 Binary files a/descriptors/globalRGBhisto/11_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_5_s.mat b/descriptors/globalRGBhisto/11_5_s.mat deleted file mode 100644 index a06a9cc..0000000 Binary files a/descriptors/globalRGBhisto/11_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_6_s.mat b/descriptors/globalRGBhisto/11_6_s.mat deleted file mode 100644 index 385ac97..0000000 Binary files a/descriptors/globalRGBhisto/11_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_7_s.mat b/descriptors/globalRGBhisto/11_7_s.mat deleted file mode 100644 index a9520c3..0000000 Binary files a/descriptors/globalRGBhisto/11_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_8_s.mat b/descriptors/globalRGBhisto/11_8_s.mat deleted file mode 100644 index e2e3e2b..0000000 Binary files a/descriptors/globalRGBhisto/11_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/11_9_s.mat b/descriptors/globalRGBhisto/11_9_s.mat deleted file mode 100644 index 9bf7674..0000000 Binary files a/descriptors/globalRGBhisto/11_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_10_s.mat b/descriptors/globalRGBhisto/12_10_s.mat deleted file mode 100644 index 74caf61..0000000 Binary files a/descriptors/globalRGBhisto/12_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_11_s.mat b/descriptors/globalRGBhisto/12_11_s.mat deleted file mode 100644 index 3c28023..0000000 Binary files a/descriptors/globalRGBhisto/12_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_12_s.mat b/descriptors/globalRGBhisto/12_12_s.mat deleted file mode 100644 index 7a2f607..0000000 Binary files a/descriptors/globalRGBhisto/12_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_13_s.mat b/descriptors/globalRGBhisto/12_13_s.mat deleted file mode 100644 index 51e7d5b..0000000 Binary files a/descriptors/globalRGBhisto/12_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_14_s.mat b/descriptors/globalRGBhisto/12_14_s.mat deleted file mode 100644 index b08cf10..0000000 Binary files a/descriptors/globalRGBhisto/12_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_15_s.mat b/descriptors/globalRGBhisto/12_15_s.mat deleted file mode 100644 index 0a50f4c..0000000 Binary files a/descriptors/globalRGBhisto/12_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_16_s.mat b/descriptors/globalRGBhisto/12_16_s.mat deleted file mode 100644 index 215da32..0000000 Binary files a/descriptors/globalRGBhisto/12_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_17_s.mat b/descriptors/globalRGBhisto/12_17_s.mat deleted file mode 100644 index 039259d..0000000 Binary files a/descriptors/globalRGBhisto/12_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_18_s.mat b/descriptors/globalRGBhisto/12_18_s.mat deleted file mode 100644 index 90c90fc..0000000 Binary files a/descriptors/globalRGBhisto/12_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_19_s.mat b/descriptors/globalRGBhisto/12_19_s.mat deleted file mode 100644 index 1350be3..0000000 Binary files a/descriptors/globalRGBhisto/12_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_1_s.mat b/descriptors/globalRGBhisto/12_1_s.mat deleted file mode 100644 index 634d0e1..0000000 Binary files a/descriptors/globalRGBhisto/12_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_20_s.mat b/descriptors/globalRGBhisto/12_20_s.mat deleted file mode 100644 index ec92b2d..0000000 Binary files a/descriptors/globalRGBhisto/12_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_21_s.mat b/descriptors/globalRGBhisto/12_21_s.mat deleted file mode 100644 index ee7bb58..0000000 Binary files a/descriptors/globalRGBhisto/12_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_22_s.mat b/descriptors/globalRGBhisto/12_22_s.mat deleted file mode 100644 index 0220235..0000000 Binary files a/descriptors/globalRGBhisto/12_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_23_s.mat b/descriptors/globalRGBhisto/12_23_s.mat deleted file mode 100644 index 736dec6..0000000 Binary files a/descriptors/globalRGBhisto/12_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_24_s.mat b/descriptors/globalRGBhisto/12_24_s.mat deleted file mode 100644 index 00cba85..0000000 Binary files a/descriptors/globalRGBhisto/12_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_25_s.mat b/descriptors/globalRGBhisto/12_25_s.mat deleted file mode 100644 index 5241af8..0000000 Binary files a/descriptors/globalRGBhisto/12_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_26_s.mat b/descriptors/globalRGBhisto/12_26_s.mat deleted file mode 100644 index 45269a4..0000000 Binary files a/descriptors/globalRGBhisto/12_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_27_s.mat b/descriptors/globalRGBhisto/12_27_s.mat deleted file mode 100644 index 76fb633..0000000 Binary files a/descriptors/globalRGBhisto/12_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_28_s.mat b/descriptors/globalRGBhisto/12_28_s.mat deleted file mode 100644 index c021dfa..0000000 Binary files a/descriptors/globalRGBhisto/12_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_29_s.mat b/descriptors/globalRGBhisto/12_29_s.mat deleted file mode 100644 index f39b8d2..0000000 Binary files a/descriptors/globalRGBhisto/12_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_2_s.mat b/descriptors/globalRGBhisto/12_2_s.mat deleted file mode 100644 index bb7a881..0000000 Binary files a/descriptors/globalRGBhisto/12_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_30_s.mat b/descriptors/globalRGBhisto/12_30_s.mat deleted file mode 100644 index 27e3e5b..0000000 Binary files a/descriptors/globalRGBhisto/12_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_31_s.mat b/descriptors/globalRGBhisto/12_31_s.mat deleted file mode 100644 index 58e7a20..0000000 Binary files a/descriptors/globalRGBhisto/12_31_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_32_s.mat b/descriptors/globalRGBhisto/12_32_s.mat deleted file mode 100644 index dcf4b2c..0000000 Binary files a/descriptors/globalRGBhisto/12_32_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_33_s.mat b/descriptors/globalRGBhisto/12_33_s.mat deleted file mode 100644 index ed383bf..0000000 Binary files a/descriptors/globalRGBhisto/12_33_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_34_s.mat b/descriptors/globalRGBhisto/12_34_s.mat deleted file mode 100644 index 8ad2573..0000000 Binary files a/descriptors/globalRGBhisto/12_34_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_3_s.mat b/descriptors/globalRGBhisto/12_3_s.mat deleted file mode 100644 index fc7b014..0000000 Binary files a/descriptors/globalRGBhisto/12_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_4_s.mat b/descriptors/globalRGBhisto/12_4_s.mat deleted file mode 100644 index 7754283..0000000 Binary files a/descriptors/globalRGBhisto/12_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_5_s.mat b/descriptors/globalRGBhisto/12_5_s.mat deleted file mode 100644 index abf3e34..0000000 Binary files a/descriptors/globalRGBhisto/12_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_6_s.mat b/descriptors/globalRGBhisto/12_6_s.mat deleted file mode 100644 index 8a26f6f..0000000 Binary files a/descriptors/globalRGBhisto/12_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_7_s.mat b/descriptors/globalRGBhisto/12_7_s.mat deleted file mode 100644 index 98ac94a..0000000 Binary files a/descriptors/globalRGBhisto/12_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_8_s.mat b/descriptors/globalRGBhisto/12_8_s.mat deleted file mode 100644 index 4be32d3..0000000 Binary files a/descriptors/globalRGBhisto/12_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/12_9_s.mat b/descriptors/globalRGBhisto/12_9_s.mat deleted file mode 100644 index e95b99f..0000000 Binary files a/descriptors/globalRGBhisto/12_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_10_s.mat b/descriptors/globalRGBhisto/13_10_s.mat deleted file mode 100644 index 8f5da02..0000000 Binary files a/descriptors/globalRGBhisto/13_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_11_s.mat b/descriptors/globalRGBhisto/13_11_s.mat deleted file mode 100644 index b019338..0000000 Binary files a/descriptors/globalRGBhisto/13_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_12_s.mat b/descriptors/globalRGBhisto/13_12_s.mat deleted file mode 100644 index adf55ae..0000000 Binary files a/descriptors/globalRGBhisto/13_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_13_s.mat b/descriptors/globalRGBhisto/13_13_s.mat deleted file mode 100644 index c34dc78..0000000 Binary files a/descriptors/globalRGBhisto/13_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_14_s.mat b/descriptors/globalRGBhisto/13_14_s.mat deleted file mode 100644 index 8780ffc..0000000 Binary files a/descriptors/globalRGBhisto/13_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_15_s.mat b/descriptors/globalRGBhisto/13_15_s.mat deleted file mode 100644 index 716da91..0000000 Binary files a/descriptors/globalRGBhisto/13_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_16_s.mat b/descriptors/globalRGBhisto/13_16_s.mat deleted file mode 100644 index 0032a8a..0000000 Binary files a/descriptors/globalRGBhisto/13_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_17_s.mat b/descriptors/globalRGBhisto/13_17_s.mat deleted file mode 100644 index 949ad4f..0000000 Binary files a/descriptors/globalRGBhisto/13_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_18_s.mat b/descriptors/globalRGBhisto/13_18_s.mat deleted file mode 100644 index faabeea..0000000 Binary files a/descriptors/globalRGBhisto/13_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_19_s.mat b/descriptors/globalRGBhisto/13_19_s.mat deleted file mode 100644 index 25370bd..0000000 Binary files a/descriptors/globalRGBhisto/13_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_1_s.mat b/descriptors/globalRGBhisto/13_1_s.mat deleted file mode 100644 index d62e8c9..0000000 Binary files a/descriptors/globalRGBhisto/13_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_20_s.mat b/descriptors/globalRGBhisto/13_20_s.mat deleted file mode 100644 index ff816f3..0000000 Binary files a/descriptors/globalRGBhisto/13_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_21_s.mat b/descriptors/globalRGBhisto/13_21_s.mat deleted file mode 100644 index f890cb0..0000000 Binary files a/descriptors/globalRGBhisto/13_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_22_s.mat b/descriptors/globalRGBhisto/13_22_s.mat deleted file mode 100644 index cfebfff..0000000 Binary files a/descriptors/globalRGBhisto/13_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_23_s.mat b/descriptors/globalRGBhisto/13_23_s.mat deleted file mode 100644 index 4d515d3..0000000 Binary files a/descriptors/globalRGBhisto/13_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_24_s.mat b/descriptors/globalRGBhisto/13_24_s.mat deleted file mode 100644 index 0bf35bc..0000000 Binary files a/descriptors/globalRGBhisto/13_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_25_s.mat b/descriptors/globalRGBhisto/13_25_s.mat deleted file mode 100644 index b07f74c..0000000 Binary files a/descriptors/globalRGBhisto/13_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_26_s.mat b/descriptors/globalRGBhisto/13_26_s.mat deleted file mode 100644 index 00c75db..0000000 Binary files a/descriptors/globalRGBhisto/13_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_27_s.mat b/descriptors/globalRGBhisto/13_27_s.mat deleted file mode 100644 index a1250f6..0000000 Binary files a/descriptors/globalRGBhisto/13_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_28_s.mat b/descriptors/globalRGBhisto/13_28_s.mat deleted file mode 100644 index 9489eed..0000000 Binary files a/descriptors/globalRGBhisto/13_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_29_s.mat b/descriptors/globalRGBhisto/13_29_s.mat deleted file mode 100644 index 2a20d37..0000000 Binary files a/descriptors/globalRGBhisto/13_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_2_s.mat b/descriptors/globalRGBhisto/13_2_s.mat deleted file mode 100644 index 3c4ed77..0000000 Binary files a/descriptors/globalRGBhisto/13_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_30_s.mat b/descriptors/globalRGBhisto/13_30_s.mat deleted file mode 100644 index ca86828..0000000 Binary files a/descriptors/globalRGBhisto/13_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_3_s.mat b/descriptors/globalRGBhisto/13_3_s.mat deleted file mode 100644 index 3ae7c3d..0000000 Binary files a/descriptors/globalRGBhisto/13_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_4_s.mat b/descriptors/globalRGBhisto/13_4_s.mat deleted file mode 100644 index 9c88709..0000000 Binary files a/descriptors/globalRGBhisto/13_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_5_s.mat b/descriptors/globalRGBhisto/13_5_s.mat deleted file mode 100644 index 22edc4c..0000000 Binary files a/descriptors/globalRGBhisto/13_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_6_s.mat b/descriptors/globalRGBhisto/13_6_s.mat deleted file mode 100644 index 2937607..0000000 Binary files a/descriptors/globalRGBhisto/13_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_7_s.mat b/descriptors/globalRGBhisto/13_7_s.mat deleted file mode 100644 index 3beefe8..0000000 Binary files a/descriptors/globalRGBhisto/13_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_8_s.mat b/descriptors/globalRGBhisto/13_8_s.mat deleted file mode 100644 index 014417b..0000000 Binary files a/descriptors/globalRGBhisto/13_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/13_9_s.mat b/descriptors/globalRGBhisto/13_9_s.mat deleted file mode 100644 index a2cb645..0000000 Binary files a/descriptors/globalRGBhisto/13_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_10_s.mat b/descriptors/globalRGBhisto/14_10_s.mat deleted file mode 100644 index 34d18bc..0000000 Binary files a/descriptors/globalRGBhisto/14_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_11_s.mat b/descriptors/globalRGBhisto/14_11_s.mat deleted file mode 100644 index da98b3b..0000000 Binary files a/descriptors/globalRGBhisto/14_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_12_s.mat b/descriptors/globalRGBhisto/14_12_s.mat deleted file mode 100644 index 25d811b..0000000 Binary files a/descriptors/globalRGBhisto/14_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_13_s.mat b/descriptors/globalRGBhisto/14_13_s.mat deleted file mode 100644 index 0ec2c37..0000000 Binary files a/descriptors/globalRGBhisto/14_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_14_s.mat b/descriptors/globalRGBhisto/14_14_s.mat deleted file mode 100644 index e9cbcba..0000000 Binary files a/descriptors/globalRGBhisto/14_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_15_s.mat b/descriptors/globalRGBhisto/14_15_s.mat deleted file mode 100644 index 5bdcf0d..0000000 Binary files a/descriptors/globalRGBhisto/14_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_16_s.mat b/descriptors/globalRGBhisto/14_16_s.mat deleted file mode 100644 index 70b95d1..0000000 Binary files a/descriptors/globalRGBhisto/14_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_17_s.mat b/descriptors/globalRGBhisto/14_17_s.mat deleted file mode 100644 index ec9ddff..0000000 Binary files a/descriptors/globalRGBhisto/14_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_18_s.mat b/descriptors/globalRGBhisto/14_18_s.mat deleted file mode 100644 index 0305775..0000000 Binary files a/descriptors/globalRGBhisto/14_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_19_s.mat b/descriptors/globalRGBhisto/14_19_s.mat deleted file mode 100644 index 6a56703..0000000 Binary files a/descriptors/globalRGBhisto/14_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_1_s.mat b/descriptors/globalRGBhisto/14_1_s.mat deleted file mode 100644 index aeb5509..0000000 Binary files a/descriptors/globalRGBhisto/14_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_20_s.mat b/descriptors/globalRGBhisto/14_20_s.mat deleted file mode 100644 index 83731b6..0000000 Binary files a/descriptors/globalRGBhisto/14_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_21_s.mat b/descriptors/globalRGBhisto/14_21_s.mat deleted file mode 100644 index 744a4ee..0000000 Binary files a/descriptors/globalRGBhisto/14_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_22_s.mat b/descriptors/globalRGBhisto/14_22_s.mat deleted file mode 100644 index a450317..0000000 Binary files a/descriptors/globalRGBhisto/14_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_23_s.mat b/descriptors/globalRGBhisto/14_23_s.mat deleted file mode 100644 index 5fef4d7..0000000 Binary files a/descriptors/globalRGBhisto/14_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_24_s.mat b/descriptors/globalRGBhisto/14_24_s.mat deleted file mode 100644 index 16984ff..0000000 Binary files a/descriptors/globalRGBhisto/14_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_25_s.mat b/descriptors/globalRGBhisto/14_25_s.mat deleted file mode 100644 index d4b4e94..0000000 Binary files a/descriptors/globalRGBhisto/14_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_26_s.mat b/descriptors/globalRGBhisto/14_26_s.mat deleted file mode 100644 index f781118..0000000 Binary files a/descriptors/globalRGBhisto/14_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_27_s.mat b/descriptors/globalRGBhisto/14_27_s.mat deleted file mode 100644 index 8130949..0000000 Binary files a/descriptors/globalRGBhisto/14_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_28_s.mat b/descriptors/globalRGBhisto/14_28_s.mat deleted file mode 100644 index 11c5b95..0000000 Binary files a/descriptors/globalRGBhisto/14_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_29_s.mat b/descriptors/globalRGBhisto/14_29_s.mat deleted file mode 100644 index a8d9a15..0000000 Binary files a/descriptors/globalRGBhisto/14_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_2_s.mat b/descriptors/globalRGBhisto/14_2_s.mat deleted file mode 100644 index 28304ef..0000000 Binary files a/descriptors/globalRGBhisto/14_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_30_s.mat b/descriptors/globalRGBhisto/14_30_s.mat deleted file mode 100644 index 0ea4117..0000000 Binary files a/descriptors/globalRGBhisto/14_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_3_s.mat b/descriptors/globalRGBhisto/14_3_s.mat deleted file mode 100644 index 30fdbee..0000000 Binary files a/descriptors/globalRGBhisto/14_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_4_s.mat b/descriptors/globalRGBhisto/14_4_s.mat deleted file mode 100644 index 2bf824f..0000000 Binary files a/descriptors/globalRGBhisto/14_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_5_s.mat b/descriptors/globalRGBhisto/14_5_s.mat deleted file mode 100644 index 491c0e3..0000000 Binary files a/descriptors/globalRGBhisto/14_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_6_s.mat b/descriptors/globalRGBhisto/14_6_s.mat deleted file mode 100644 index d4f2dc1..0000000 Binary files a/descriptors/globalRGBhisto/14_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_7_s.mat b/descriptors/globalRGBhisto/14_7_s.mat deleted file mode 100644 index 56c6c9f..0000000 Binary files a/descriptors/globalRGBhisto/14_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_8_s.mat b/descriptors/globalRGBhisto/14_8_s.mat deleted file mode 100644 index 6c83cdf..0000000 Binary files a/descriptors/globalRGBhisto/14_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/14_9_s.mat b/descriptors/globalRGBhisto/14_9_s.mat deleted file mode 100644 index ee32f38..0000000 Binary files a/descriptors/globalRGBhisto/14_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_10_s.mat b/descriptors/globalRGBhisto/15_10_s.mat deleted file mode 100644 index 2cbd4d7..0000000 Binary files a/descriptors/globalRGBhisto/15_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_11_s.mat b/descriptors/globalRGBhisto/15_11_s.mat deleted file mode 100644 index ec2c7cb..0000000 Binary files a/descriptors/globalRGBhisto/15_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_12_s.mat b/descriptors/globalRGBhisto/15_12_s.mat deleted file mode 100644 index dd88481..0000000 Binary files a/descriptors/globalRGBhisto/15_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_13_s.mat b/descriptors/globalRGBhisto/15_13_s.mat deleted file mode 100644 index 793a068..0000000 Binary files a/descriptors/globalRGBhisto/15_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_14_s.mat b/descriptors/globalRGBhisto/15_14_s.mat deleted file mode 100644 index 4dd031b..0000000 Binary files a/descriptors/globalRGBhisto/15_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_15_s.mat b/descriptors/globalRGBhisto/15_15_s.mat deleted file mode 100644 index f08a66f..0000000 Binary files a/descriptors/globalRGBhisto/15_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_16_s.mat b/descriptors/globalRGBhisto/15_16_s.mat deleted file mode 100644 index a03c87c..0000000 Binary files a/descriptors/globalRGBhisto/15_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_17_s.mat b/descriptors/globalRGBhisto/15_17_s.mat deleted file mode 100644 index 8f408e5..0000000 Binary files a/descriptors/globalRGBhisto/15_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_18_s.mat b/descriptors/globalRGBhisto/15_18_s.mat deleted file mode 100644 index e9434e0..0000000 Binary files a/descriptors/globalRGBhisto/15_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_19_s.mat b/descriptors/globalRGBhisto/15_19_s.mat deleted file mode 100644 index a677467..0000000 Binary files a/descriptors/globalRGBhisto/15_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_1_s.mat b/descriptors/globalRGBhisto/15_1_s.mat deleted file mode 100644 index 605e9da..0000000 Binary files a/descriptors/globalRGBhisto/15_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_20_s.mat b/descriptors/globalRGBhisto/15_20_s.mat deleted file mode 100644 index 65eef21..0000000 Binary files a/descriptors/globalRGBhisto/15_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_21_s.mat b/descriptors/globalRGBhisto/15_21_s.mat deleted file mode 100644 index 4aff36f..0000000 Binary files a/descriptors/globalRGBhisto/15_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_22_s.mat b/descriptors/globalRGBhisto/15_22_s.mat deleted file mode 100644 index 34daba8..0000000 Binary files a/descriptors/globalRGBhisto/15_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_23_s.mat b/descriptors/globalRGBhisto/15_23_s.mat deleted file mode 100644 index 85383ba..0000000 Binary files a/descriptors/globalRGBhisto/15_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_24_s.mat b/descriptors/globalRGBhisto/15_24_s.mat deleted file mode 100644 index 603b234..0000000 Binary files a/descriptors/globalRGBhisto/15_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_2_s.mat b/descriptors/globalRGBhisto/15_2_s.mat deleted file mode 100644 index 0f4d25e..0000000 Binary files a/descriptors/globalRGBhisto/15_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_3_s.mat b/descriptors/globalRGBhisto/15_3_s.mat deleted file mode 100644 index 5588736..0000000 Binary files a/descriptors/globalRGBhisto/15_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_4_s.mat b/descriptors/globalRGBhisto/15_4_s.mat deleted file mode 100644 index 7a5e220..0000000 Binary files a/descriptors/globalRGBhisto/15_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_5_s.mat b/descriptors/globalRGBhisto/15_5_s.mat deleted file mode 100644 index d680538..0000000 Binary files a/descriptors/globalRGBhisto/15_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_6_s.mat b/descriptors/globalRGBhisto/15_6_s.mat deleted file mode 100644 index 64cde68..0000000 Binary files a/descriptors/globalRGBhisto/15_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_7_s.mat b/descriptors/globalRGBhisto/15_7_s.mat deleted file mode 100644 index 4267103..0000000 Binary files a/descriptors/globalRGBhisto/15_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_8_s.mat b/descriptors/globalRGBhisto/15_8_s.mat deleted file mode 100644 index ffa2b68..0000000 Binary files a/descriptors/globalRGBhisto/15_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/15_9_s.mat b/descriptors/globalRGBhisto/15_9_s.mat deleted file mode 100644 index 5f054a2..0000000 Binary files a/descriptors/globalRGBhisto/15_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_10_s.mat b/descriptors/globalRGBhisto/16_10_s.mat deleted file mode 100644 index 7cc47bc..0000000 Binary files a/descriptors/globalRGBhisto/16_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_11_s.mat b/descriptors/globalRGBhisto/16_11_s.mat deleted file mode 100644 index 9f92d57..0000000 Binary files a/descriptors/globalRGBhisto/16_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_12_s.mat b/descriptors/globalRGBhisto/16_12_s.mat deleted file mode 100644 index 192a3ff..0000000 Binary files a/descriptors/globalRGBhisto/16_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_13_s.mat b/descriptors/globalRGBhisto/16_13_s.mat deleted file mode 100644 index aa5a752..0000000 Binary files a/descriptors/globalRGBhisto/16_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_14_s.mat b/descriptors/globalRGBhisto/16_14_s.mat deleted file mode 100644 index 5c3aa95..0000000 Binary files a/descriptors/globalRGBhisto/16_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_15_s.mat b/descriptors/globalRGBhisto/16_15_s.mat deleted file mode 100644 index 9771faa..0000000 Binary files a/descriptors/globalRGBhisto/16_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_16_s.mat b/descriptors/globalRGBhisto/16_16_s.mat deleted file mode 100644 index 0ca9d21..0000000 Binary files a/descriptors/globalRGBhisto/16_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_17_s.mat b/descriptors/globalRGBhisto/16_17_s.mat deleted file mode 100644 index a42f8f9..0000000 Binary files a/descriptors/globalRGBhisto/16_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_18_s.mat b/descriptors/globalRGBhisto/16_18_s.mat deleted file mode 100644 index 5b4bd78..0000000 Binary files a/descriptors/globalRGBhisto/16_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_19_s.mat b/descriptors/globalRGBhisto/16_19_s.mat deleted file mode 100644 index 2e6dbeb..0000000 Binary files a/descriptors/globalRGBhisto/16_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_1_s.mat b/descriptors/globalRGBhisto/16_1_s.mat deleted file mode 100644 index 314a6ec..0000000 Binary files a/descriptors/globalRGBhisto/16_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_20_s.mat b/descriptors/globalRGBhisto/16_20_s.mat deleted file mode 100644 index 64fdcc7..0000000 Binary files a/descriptors/globalRGBhisto/16_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_21_s.mat b/descriptors/globalRGBhisto/16_21_s.mat deleted file mode 100644 index 8bc2037..0000000 Binary files a/descriptors/globalRGBhisto/16_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_22_s.mat b/descriptors/globalRGBhisto/16_22_s.mat deleted file mode 100644 index e264b8d..0000000 Binary files a/descriptors/globalRGBhisto/16_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_23_s.mat b/descriptors/globalRGBhisto/16_23_s.mat deleted file mode 100644 index 90c87cc..0000000 Binary files a/descriptors/globalRGBhisto/16_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_24_s.mat b/descriptors/globalRGBhisto/16_24_s.mat deleted file mode 100644 index 9951a06..0000000 Binary files a/descriptors/globalRGBhisto/16_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_25_s.mat b/descriptors/globalRGBhisto/16_25_s.mat deleted file mode 100644 index 961ac5d..0000000 Binary files a/descriptors/globalRGBhisto/16_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_26_s.mat b/descriptors/globalRGBhisto/16_26_s.mat deleted file mode 100644 index 69c4b83..0000000 Binary files a/descriptors/globalRGBhisto/16_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_27_s.mat b/descriptors/globalRGBhisto/16_27_s.mat deleted file mode 100644 index 233c83f..0000000 Binary files a/descriptors/globalRGBhisto/16_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_28_s.mat b/descriptors/globalRGBhisto/16_28_s.mat deleted file mode 100644 index 056214a..0000000 Binary files a/descriptors/globalRGBhisto/16_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_29_s.mat b/descriptors/globalRGBhisto/16_29_s.mat deleted file mode 100644 index ab7f743..0000000 Binary files a/descriptors/globalRGBhisto/16_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_2_s.mat b/descriptors/globalRGBhisto/16_2_s.mat deleted file mode 100644 index cbdb3ed..0000000 Binary files a/descriptors/globalRGBhisto/16_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_30_s.mat b/descriptors/globalRGBhisto/16_30_s.mat deleted file mode 100644 index e367eca..0000000 Binary files a/descriptors/globalRGBhisto/16_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_3_s.mat b/descriptors/globalRGBhisto/16_3_s.mat deleted file mode 100644 index a62b85d..0000000 Binary files a/descriptors/globalRGBhisto/16_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_4_s.mat b/descriptors/globalRGBhisto/16_4_s.mat deleted file mode 100644 index 8deca34..0000000 Binary files a/descriptors/globalRGBhisto/16_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_5_s.mat b/descriptors/globalRGBhisto/16_5_s.mat deleted file mode 100644 index 475c0e2..0000000 Binary files a/descriptors/globalRGBhisto/16_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_6_s.mat b/descriptors/globalRGBhisto/16_6_s.mat deleted file mode 100644 index 70347da..0000000 Binary files a/descriptors/globalRGBhisto/16_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_7_s.mat b/descriptors/globalRGBhisto/16_7_s.mat deleted file mode 100644 index 20ed9f7..0000000 Binary files a/descriptors/globalRGBhisto/16_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_8_s.mat b/descriptors/globalRGBhisto/16_8_s.mat deleted file mode 100644 index bfeefdd..0000000 Binary files a/descriptors/globalRGBhisto/16_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/16_9_s.mat b/descriptors/globalRGBhisto/16_9_s.mat deleted file mode 100644 index 19feab1..0000000 Binary files a/descriptors/globalRGBhisto/16_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_10_s.mat b/descriptors/globalRGBhisto/17_10_s.mat deleted file mode 100644 index 8163a37..0000000 Binary files a/descriptors/globalRGBhisto/17_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_11_s.mat b/descriptors/globalRGBhisto/17_11_s.mat deleted file mode 100644 index 197a8c2..0000000 Binary files a/descriptors/globalRGBhisto/17_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_12_s.mat b/descriptors/globalRGBhisto/17_12_s.mat deleted file mode 100644 index b372f20..0000000 Binary files a/descriptors/globalRGBhisto/17_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_13_s.mat b/descriptors/globalRGBhisto/17_13_s.mat deleted file mode 100644 index 9a041c9..0000000 Binary files a/descriptors/globalRGBhisto/17_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_14_s.mat b/descriptors/globalRGBhisto/17_14_s.mat deleted file mode 100644 index 995cc47..0000000 Binary files a/descriptors/globalRGBhisto/17_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_15_s.mat b/descriptors/globalRGBhisto/17_15_s.mat deleted file mode 100644 index 0d294f6..0000000 Binary files a/descriptors/globalRGBhisto/17_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_16_s.mat b/descriptors/globalRGBhisto/17_16_s.mat deleted file mode 100644 index 1d34039..0000000 Binary files a/descriptors/globalRGBhisto/17_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_17_s.mat b/descriptors/globalRGBhisto/17_17_s.mat deleted file mode 100644 index 19228da..0000000 Binary files a/descriptors/globalRGBhisto/17_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_18_s.mat b/descriptors/globalRGBhisto/17_18_s.mat deleted file mode 100644 index 86c3df9..0000000 Binary files a/descriptors/globalRGBhisto/17_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_19_s.mat b/descriptors/globalRGBhisto/17_19_s.mat deleted file mode 100644 index 47fbecf..0000000 Binary files a/descriptors/globalRGBhisto/17_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_1_s.mat b/descriptors/globalRGBhisto/17_1_s.mat deleted file mode 100644 index 9c99f69..0000000 Binary files a/descriptors/globalRGBhisto/17_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_20_s.mat b/descriptors/globalRGBhisto/17_20_s.mat deleted file mode 100644 index 110e602..0000000 Binary files a/descriptors/globalRGBhisto/17_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_21_s.mat b/descriptors/globalRGBhisto/17_21_s.mat deleted file mode 100644 index a87bc6b..0000000 Binary files a/descriptors/globalRGBhisto/17_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_22_s.mat b/descriptors/globalRGBhisto/17_22_s.mat deleted file mode 100644 index 0586e15..0000000 Binary files a/descriptors/globalRGBhisto/17_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_23_s.mat b/descriptors/globalRGBhisto/17_23_s.mat deleted file mode 100644 index 63e4072..0000000 Binary files a/descriptors/globalRGBhisto/17_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_24_s.mat b/descriptors/globalRGBhisto/17_24_s.mat deleted file mode 100644 index bd86ec0..0000000 Binary files a/descriptors/globalRGBhisto/17_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_25_s.mat b/descriptors/globalRGBhisto/17_25_s.mat deleted file mode 100644 index cd1b25f..0000000 Binary files a/descriptors/globalRGBhisto/17_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_26_s.mat b/descriptors/globalRGBhisto/17_26_s.mat deleted file mode 100644 index 7e73153..0000000 Binary files a/descriptors/globalRGBhisto/17_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_27_s.mat b/descriptors/globalRGBhisto/17_27_s.mat deleted file mode 100644 index 7c609d2..0000000 Binary files a/descriptors/globalRGBhisto/17_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_28_s.mat b/descriptors/globalRGBhisto/17_28_s.mat deleted file mode 100644 index 83a4922..0000000 Binary files a/descriptors/globalRGBhisto/17_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_29_s.mat b/descriptors/globalRGBhisto/17_29_s.mat deleted file mode 100644 index a7cc792..0000000 Binary files a/descriptors/globalRGBhisto/17_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_2_s.mat b/descriptors/globalRGBhisto/17_2_s.mat deleted file mode 100644 index 2f2e885..0000000 Binary files a/descriptors/globalRGBhisto/17_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_30_s.mat b/descriptors/globalRGBhisto/17_30_s.mat deleted file mode 100644 index 82c38ba..0000000 Binary files a/descriptors/globalRGBhisto/17_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_3_s.mat b/descriptors/globalRGBhisto/17_3_s.mat deleted file mode 100644 index dc1813d..0000000 Binary files a/descriptors/globalRGBhisto/17_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_4_s.mat b/descriptors/globalRGBhisto/17_4_s.mat deleted file mode 100644 index 81fc48d..0000000 Binary files a/descriptors/globalRGBhisto/17_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_5_s.mat b/descriptors/globalRGBhisto/17_5_s.mat deleted file mode 100644 index 28574b6..0000000 Binary files a/descriptors/globalRGBhisto/17_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_6_s.mat b/descriptors/globalRGBhisto/17_6_s.mat deleted file mode 100644 index 34b057b..0000000 Binary files a/descriptors/globalRGBhisto/17_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_7_s.mat b/descriptors/globalRGBhisto/17_7_s.mat deleted file mode 100644 index ada5490..0000000 Binary files a/descriptors/globalRGBhisto/17_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_8_s.mat b/descriptors/globalRGBhisto/17_8_s.mat deleted file mode 100644 index 0cf88c1..0000000 Binary files a/descriptors/globalRGBhisto/17_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/17_9_s.mat b/descriptors/globalRGBhisto/17_9_s.mat deleted file mode 100644 index de409fd..0000000 Binary files a/descriptors/globalRGBhisto/17_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_10_s.mat b/descriptors/globalRGBhisto/18_10_s.mat deleted file mode 100644 index 2593173..0000000 Binary files a/descriptors/globalRGBhisto/18_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_11_s.mat b/descriptors/globalRGBhisto/18_11_s.mat deleted file mode 100644 index e1614bb..0000000 Binary files a/descriptors/globalRGBhisto/18_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_12_s.mat b/descriptors/globalRGBhisto/18_12_s.mat deleted file mode 100644 index 98839bd..0000000 Binary files a/descriptors/globalRGBhisto/18_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_13_s.mat b/descriptors/globalRGBhisto/18_13_s.mat deleted file mode 100644 index b6ae497..0000000 Binary files a/descriptors/globalRGBhisto/18_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_14_s.mat b/descriptors/globalRGBhisto/18_14_s.mat deleted file mode 100644 index 85534c4..0000000 Binary files a/descriptors/globalRGBhisto/18_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_15_s.mat b/descriptors/globalRGBhisto/18_15_s.mat deleted file mode 100644 index 2cf9b8c..0000000 Binary files a/descriptors/globalRGBhisto/18_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_16_s.mat b/descriptors/globalRGBhisto/18_16_s.mat deleted file mode 100644 index 9e00a6b..0000000 Binary files a/descriptors/globalRGBhisto/18_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_17_s.mat b/descriptors/globalRGBhisto/18_17_s.mat deleted file mode 100644 index abd267e..0000000 Binary files a/descriptors/globalRGBhisto/18_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_18_s.mat b/descriptors/globalRGBhisto/18_18_s.mat deleted file mode 100644 index 282ada0..0000000 Binary files a/descriptors/globalRGBhisto/18_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_19_s.mat b/descriptors/globalRGBhisto/18_19_s.mat deleted file mode 100644 index 1f9070f..0000000 Binary files a/descriptors/globalRGBhisto/18_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_1_s.mat b/descriptors/globalRGBhisto/18_1_s.mat deleted file mode 100644 index b31ae3b..0000000 Binary files a/descriptors/globalRGBhisto/18_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_20_s.mat b/descriptors/globalRGBhisto/18_20_s.mat deleted file mode 100644 index 1fe650b..0000000 Binary files a/descriptors/globalRGBhisto/18_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_21_s.mat b/descriptors/globalRGBhisto/18_21_s.mat deleted file mode 100644 index 73f67e4..0000000 Binary files a/descriptors/globalRGBhisto/18_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_22_s.mat b/descriptors/globalRGBhisto/18_22_s.mat deleted file mode 100644 index c19e4a8..0000000 Binary files a/descriptors/globalRGBhisto/18_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_23_s.mat b/descriptors/globalRGBhisto/18_23_s.mat deleted file mode 100644 index 7f46338..0000000 Binary files a/descriptors/globalRGBhisto/18_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_24_s.mat b/descriptors/globalRGBhisto/18_24_s.mat deleted file mode 100644 index e4d1a35..0000000 Binary files a/descriptors/globalRGBhisto/18_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_25_s.mat b/descriptors/globalRGBhisto/18_25_s.mat deleted file mode 100644 index 6914408..0000000 Binary files a/descriptors/globalRGBhisto/18_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_26_s.mat b/descriptors/globalRGBhisto/18_26_s.mat deleted file mode 100644 index 61e392e..0000000 Binary files a/descriptors/globalRGBhisto/18_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_27_s.mat b/descriptors/globalRGBhisto/18_27_s.mat deleted file mode 100644 index aa01dfa..0000000 Binary files a/descriptors/globalRGBhisto/18_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_28_s.mat b/descriptors/globalRGBhisto/18_28_s.mat deleted file mode 100644 index 4d4af0a..0000000 Binary files a/descriptors/globalRGBhisto/18_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_29_s.mat b/descriptors/globalRGBhisto/18_29_s.mat deleted file mode 100644 index e61e280..0000000 Binary files a/descriptors/globalRGBhisto/18_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_2_s.mat b/descriptors/globalRGBhisto/18_2_s.mat deleted file mode 100644 index bfa80a8..0000000 Binary files a/descriptors/globalRGBhisto/18_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_30_s.mat b/descriptors/globalRGBhisto/18_30_s.mat deleted file mode 100644 index ab966ee..0000000 Binary files a/descriptors/globalRGBhisto/18_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_3_s.mat b/descriptors/globalRGBhisto/18_3_s.mat deleted file mode 100644 index dda01b9..0000000 Binary files a/descriptors/globalRGBhisto/18_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_4_s.mat b/descriptors/globalRGBhisto/18_4_s.mat deleted file mode 100644 index 3cc6f97..0000000 Binary files a/descriptors/globalRGBhisto/18_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_5_s.mat b/descriptors/globalRGBhisto/18_5_s.mat deleted file mode 100644 index 1d9d074..0000000 Binary files a/descriptors/globalRGBhisto/18_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_6_s.mat b/descriptors/globalRGBhisto/18_6_s.mat deleted file mode 100644 index c98d41f..0000000 Binary files a/descriptors/globalRGBhisto/18_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_7_s.mat b/descriptors/globalRGBhisto/18_7_s.mat deleted file mode 100644 index 8bdb19b..0000000 Binary files a/descriptors/globalRGBhisto/18_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_8_s.mat b/descriptors/globalRGBhisto/18_8_s.mat deleted file mode 100644 index 8536d52..0000000 Binary files a/descriptors/globalRGBhisto/18_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/18_9_s.mat b/descriptors/globalRGBhisto/18_9_s.mat deleted file mode 100644 index adadaa6..0000000 Binary files a/descriptors/globalRGBhisto/18_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_10_s.mat b/descriptors/globalRGBhisto/19_10_s.mat deleted file mode 100644 index 0cf28e4..0000000 Binary files a/descriptors/globalRGBhisto/19_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_11_s.mat b/descriptors/globalRGBhisto/19_11_s.mat deleted file mode 100644 index f2c35a7..0000000 Binary files a/descriptors/globalRGBhisto/19_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_12_s.mat b/descriptors/globalRGBhisto/19_12_s.mat deleted file mode 100644 index 0ce26e6..0000000 Binary files a/descriptors/globalRGBhisto/19_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_13_s.mat b/descriptors/globalRGBhisto/19_13_s.mat deleted file mode 100644 index 07d216c..0000000 Binary files a/descriptors/globalRGBhisto/19_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_14_s.mat b/descriptors/globalRGBhisto/19_14_s.mat deleted file mode 100644 index 0451ddd..0000000 Binary files a/descriptors/globalRGBhisto/19_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_15_s.mat b/descriptors/globalRGBhisto/19_15_s.mat deleted file mode 100644 index 7290dc7..0000000 Binary files a/descriptors/globalRGBhisto/19_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_16_s.mat b/descriptors/globalRGBhisto/19_16_s.mat deleted file mode 100644 index 5f40afb..0000000 Binary files a/descriptors/globalRGBhisto/19_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_17_s.mat b/descriptors/globalRGBhisto/19_17_s.mat deleted file mode 100644 index d167f06..0000000 Binary files a/descriptors/globalRGBhisto/19_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_18_s.mat b/descriptors/globalRGBhisto/19_18_s.mat deleted file mode 100644 index d85e3da..0000000 Binary files a/descriptors/globalRGBhisto/19_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_19_s.mat b/descriptors/globalRGBhisto/19_19_s.mat deleted file mode 100644 index e3b9493..0000000 Binary files a/descriptors/globalRGBhisto/19_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_1_s.mat b/descriptors/globalRGBhisto/19_1_s.mat deleted file mode 100644 index d4d03ea..0000000 Binary files a/descriptors/globalRGBhisto/19_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_20_s.mat b/descriptors/globalRGBhisto/19_20_s.mat deleted file mode 100644 index e6fb388..0000000 Binary files a/descriptors/globalRGBhisto/19_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_21_s.mat b/descriptors/globalRGBhisto/19_21_s.mat deleted file mode 100644 index 4dbadb7..0000000 Binary files a/descriptors/globalRGBhisto/19_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_22_s.mat b/descriptors/globalRGBhisto/19_22_s.mat deleted file mode 100644 index f6ce804..0000000 Binary files a/descriptors/globalRGBhisto/19_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_23_s.mat b/descriptors/globalRGBhisto/19_23_s.mat deleted file mode 100644 index ccecaaa..0000000 Binary files a/descriptors/globalRGBhisto/19_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_24_s.mat b/descriptors/globalRGBhisto/19_24_s.mat deleted file mode 100644 index 304ec3f..0000000 Binary files a/descriptors/globalRGBhisto/19_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_25_s.mat b/descriptors/globalRGBhisto/19_25_s.mat deleted file mode 100644 index 60cedf1..0000000 Binary files a/descriptors/globalRGBhisto/19_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_26_s.mat b/descriptors/globalRGBhisto/19_26_s.mat deleted file mode 100644 index 109b2b0..0000000 Binary files a/descriptors/globalRGBhisto/19_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_27_s.mat b/descriptors/globalRGBhisto/19_27_s.mat deleted file mode 100644 index e5f9c61..0000000 Binary files a/descriptors/globalRGBhisto/19_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_28_s.mat b/descriptors/globalRGBhisto/19_28_s.mat deleted file mode 100644 index 7215475..0000000 Binary files a/descriptors/globalRGBhisto/19_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_29_s.mat b/descriptors/globalRGBhisto/19_29_s.mat deleted file mode 100644 index 9832982..0000000 Binary files a/descriptors/globalRGBhisto/19_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_2_s.mat b/descriptors/globalRGBhisto/19_2_s.mat deleted file mode 100644 index e3b0bde..0000000 Binary files a/descriptors/globalRGBhisto/19_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_30_s.mat b/descriptors/globalRGBhisto/19_30_s.mat deleted file mode 100644 index 93f0761..0000000 Binary files a/descriptors/globalRGBhisto/19_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_3_s.mat b/descriptors/globalRGBhisto/19_3_s.mat deleted file mode 100644 index 9afb0cc..0000000 Binary files a/descriptors/globalRGBhisto/19_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_4_s.mat b/descriptors/globalRGBhisto/19_4_s.mat deleted file mode 100644 index f0e9baf..0000000 Binary files a/descriptors/globalRGBhisto/19_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_5_s.mat b/descriptors/globalRGBhisto/19_5_s.mat deleted file mode 100644 index 30049d9..0000000 Binary files a/descriptors/globalRGBhisto/19_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_6_s.mat b/descriptors/globalRGBhisto/19_6_s.mat deleted file mode 100644 index 51cd4ab..0000000 Binary files a/descriptors/globalRGBhisto/19_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_7_s.mat b/descriptors/globalRGBhisto/19_7_s.mat deleted file mode 100644 index a502701..0000000 Binary files a/descriptors/globalRGBhisto/19_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_8_s.mat b/descriptors/globalRGBhisto/19_8_s.mat deleted file mode 100644 index f82ec97..0000000 Binary files a/descriptors/globalRGBhisto/19_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/19_9_s.mat b/descriptors/globalRGBhisto/19_9_s.mat deleted file mode 100644 index 57c9f16..0000000 Binary files a/descriptors/globalRGBhisto/19_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_10_s.mat b/descriptors/globalRGBhisto/1_10_s.mat deleted file mode 100644 index 5b532cf..0000000 Binary files a/descriptors/globalRGBhisto/1_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_11_s.mat b/descriptors/globalRGBhisto/1_11_s.mat deleted file mode 100644 index 4257d6e..0000000 Binary files a/descriptors/globalRGBhisto/1_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_12_s.mat b/descriptors/globalRGBhisto/1_12_s.mat deleted file mode 100644 index b784a3f..0000000 Binary files a/descriptors/globalRGBhisto/1_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_13_s.mat b/descriptors/globalRGBhisto/1_13_s.mat deleted file mode 100644 index 104ecf2..0000000 Binary files a/descriptors/globalRGBhisto/1_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_14_s.mat b/descriptors/globalRGBhisto/1_14_s.mat deleted file mode 100644 index 351ca17..0000000 Binary files a/descriptors/globalRGBhisto/1_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_15_s.mat b/descriptors/globalRGBhisto/1_15_s.mat deleted file mode 100644 index c3b0a3c..0000000 Binary files a/descriptors/globalRGBhisto/1_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_16_s.mat b/descriptors/globalRGBhisto/1_16_s.mat deleted file mode 100644 index fec643b..0000000 Binary files a/descriptors/globalRGBhisto/1_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_17_s.mat b/descriptors/globalRGBhisto/1_17_s.mat deleted file mode 100644 index 8b022b5..0000000 Binary files a/descriptors/globalRGBhisto/1_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_18_s.mat b/descriptors/globalRGBhisto/1_18_s.mat deleted file mode 100644 index 9674b90..0000000 Binary files a/descriptors/globalRGBhisto/1_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_19_s.mat b/descriptors/globalRGBhisto/1_19_s.mat deleted file mode 100644 index d376d28..0000000 Binary files a/descriptors/globalRGBhisto/1_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_1_s.mat b/descriptors/globalRGBhisto/1_1_s.mat deleted file mode 100644 index 24e5dbc..0000000 Binary files a/descriptors/globalRGBhisto/1_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_20_s.mat b/descriptors/globalRGBhisto/1_20_s.mat deleted file mode 100644 index 11697d8..0000000 Binary files a/descriptors/globalRGBhisto/1_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_21_s.mat b/descriptors/globalRGBhisto/1_21_s.mat deleted file mode 100644 index accc9ba..0000000 Binary files a/descriptors/globalRGBhisto/1_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_22_s.mat b/descriptors/globalRGBhisto/1_22_s.mat deleted file mode 100644 index 8ffdb78..0000000 Binary files a/descriptors/globalRGBhisto/1_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_23_s.mat b/descriptors/globalRGBhisto/1_23_s.mat deleted file mode 100644 index 4a0c04a..0000000 Binary files a/descriptors/globalRGBhisto/1_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_24_s.mat b/descriptors/globalRGBhisto/1_24_s.mat deleted file mode 100644 index a28e1bc..0000000 Binary files a/descriptors/globalRGBhisto/1_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_25_s.mat b/descriptors/globalRGBhisto/1_25_s.mat deleted file mode 100644 index de36a7f..0000000 Binary files a/descriptors/globalRGBhisto/1_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_26_s.mat b/descriptors/globalRGBhisto/1_26_s.mat deleted file mode 100644 index db03094..0000000 Binary files a/descriptors/globalRGBhisto/1_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_27_s.mat b/descriptors/globalRGBhisto/1_27_s.mat deleted file mode 100644 index a6f86e4..0000000 Binary files a/descriptors/globalRGBhisto/1_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_28_s.mat b/descriptors/globalRGBhisto/1_28_s.mat deleted file mode 100644 index a9e23d3..0000000 Binary files a/descriptors/globalRGBhisto/1_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_29_s.mat b/descriptors/globalRGBhisto/1_29_s.mat deleted file mode 100644 index b4a52c4..0000000 Binary files a/descriptors/globalRGBhisto/1_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_2_s.mat b/descriptors/globalRGBhisto/1_2_s.mat deleted file mode 100644 index 7e4144d..0000000 Binary files a/descriptors/globalRGBhisto/1_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_30_s.mat b/descriptors/globalRGBhisto/1_30_s.mat deleted file mode 100644 index 4f68e29..0000000 Binary files a/descriptors/globalRGBhisto/1_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_3_s.mat b/descriptors/globalRGBhisto/1_3_s.mat deleted file mode 100644 index 52e2404..0000000 Binary files a/descriptors/globalRGBhisto/1_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_4_s.mat b/descriptors/globalRGBhisto/1_4_s.mat deleted file mode 100644 index 28a8b89..0000000 Binary files a/descriptors/globalRGBhisto/1_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_5_s.mat b/descriptors/globalRGBhisto/1_5_s.mat deleted file mode 100644 index 5517edf..0000000 Binary files a/descriptors/globalRGBhisto/1_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_6_s.mat b/descriptors/globalRGBhisto/1_6_s.mat deleted file mode 100644 index ee819f5..0000000 Binary files a/descriptors/globalRGBhisto/1_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_7_s.mat b/descriptors/globalRGBhisto/1_7_s.mat deleted file mode 100644 index 4862698..0000000 Binary files a/descriptors/globalRGBhisto/1_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_8_s.mat b/descriptors/globalRGBhisto/1_8_s.mat deleted file mode 100644 index dbbd600..0000000 Binary files a/descriptors/globalRGBhisto/1_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/1_9_s.mat b/descriptors/globalRGBhisto/1_9_s.mat deleted file mode 100644 index 14838f0..0000000 Binary files a/descriptors/globalRGBhisto/1_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_10_s.mat b/descriptors/globalRGBhisto/20_10_s.mat deleted file mode 100644 index 478cd4d..0000000 Binary files a/descriptors/globalRGBhisto/20_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_11_s.mat b/descriptors/globalRGBhisto/20_11_s.mat deleted file mode 100644 index dc66d64..0000000 Binary files a/descriptors/globalRGBhisto/20_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_12_s.mat b/descriptors/globalRGBhisto/20_12_s.mat deleted file mode 100644 index 4847c1d..0000000 Binary files a/descriptors/globalRGBhisto/20_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_13_s.mat b/descriptors/globalRGBhisto/20_13_s.mat deleted file mode 100644 index 82f942f..0000000 Binary files a/descriptors/globalRGBhisto/20_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_14_s.mat b/descriptors/globalRGBhisto/20_14_s.mat deleted file mode 100644 index 7d54aba..0000000 Binary files a/descriptors/globalRGBhisto/20_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_15_s.mat b/descriptors/globalRGBhisto/20_15_s.mat deleted file mode 100644 index 0f65560..0000000 Binary files a/descriptors/globalRGBhisto/20_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_16_s.mat b/descriptors/globalRGBhisto/20_16_s.mat deleted file mode 100644 index 6f9da32..0000000 Binary files a/descriptors/globalRGBhisto/20_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_17_s.mat b/descriptors/globalRGBhisto/20_17_s.mat deleted file mode 100644 index cbe3bd8..0000000 Binary files a/descriptors/globalRGBhisto/20_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_18_s.mat b/descriptors/globalRGBhisto/20_18_s.mat deleted file mode 100644 index 9ce0f12..0000000 Binary files a/descriptors/globalRGBhisto/20_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_19_s.mat b/descriptors/globalRGBhisto/20_19_s.mat deleted file mode 100644 index 5280cfd..0000000 Binary files a/descriptors/globalRGBhisto/20_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_1_s.mat b/descriptors/globalRGBhisto/20_1_s.mat deleted file mode 100644 index 60d3ff8..0000000 Binary files a/descriptors/globalRGBhisto/20_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_20_s.mat b/descriptors/globalRGBhisto/20_20_s.mat deleted file mode 100644 index e6f2895..0000000 Binary files a/descriptors/globalRGBhisto/20_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_21_s.mat b/descriptors/globalRGBhisto/20_21_s.mat deleted file mode 100644 index 1421ab2..0000000 Binary files a/descriptors/globalRGBhisto/20_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_2_s.mat b/descriptors/globalRGBhisto/20_2_s.mat deleted file mode 100644 index 1c46ded..0000000 Binary files a/descriptors/globalRGBhisto/20_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_3_s.mat b/descriptors/globalRGBhisto/20_3_s.mat deleted file mode 100644 index 27aa39a..0000000 Binary files a/descriptors/globalRGBhisto/20_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_4_s.mat b/descriptors/globalRGBhisto/20_4_s.mat deleted file mode 100644 index e592ba5..0000000 Binary files a/descriptors/globalRGBhisto/20_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_5_s.mat b/descriptors/globalRGBhisto/20_5_s.mat deleted file mode 100644 index 1ff7d07..0000000 Binary files a/descriptors/globalRGBhisto/20_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_6_s.mat b/descriptors/globalRGBhisto/20_6_s.mat deleted file mode 100644 index 1930144..0000000 Binary files a/descriptors/globalRGBhisto/20_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_7_s.mat b/descriptors/globalRGBhisto/20_7_s.mat deleted file mode 100644 index 281a9dd..0000000 Binary files a/descriptors/globalRGBhisto/20_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_8_s.mat b/descriptors/globalRGBhisto/20_8_s.mat deleted file mode 100644 index 299ca50..0000000 Binary files a/descriptors/globalRGBhisto/20_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/20_9_s.mat b/descriptors/globalRGBhisto/20_9_s.mat deleted file mode 100644 index 95d0f2f..0000000 Binary files a/descriptors/globalRGBhisto/20_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_10_s.mat b/descriptors/globalRGBhisto/2_10_s.mat deleted file mode 100644 index 5c8d302..0000000 Binary files a/descriptors/globalRGBhisto/2_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_11_s.mat b/descriptors/globalRGBhisto/2_11_s.mat deleted file mode 100644 index 6324601..0000000 Binary files a/descriptors/globalRGBhisto/2_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_12_s.mat b/descriptors/globalRGBhisto/2_12_s.mat deleted file mode 100644 index 7ffaa62..0000000 Binary files a/descriptors/globalRGBhisto/2_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_13_s.mat b/descriptors/globalRGBhisto/2_13_s.mat deleted file mode 100644 index f9f9f80..0000000 Binary files a/descriptors/globalRGBhisto/2_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_14_s.mat b/descriptors/globalRGBhisto/2_14_s.mat deleted file mode 100644 index ac41d98..0000000 Binary files a/descriptors/globalRGBhisto/2_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_15_s.mat b/descriptors/globalRGBhisto/2_15_s.mat deleted file mode 100644 index a3e6200..0000000 Binary files a/descriptors/globalRGBhisto/2_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_16_s.mat b/descriptors/globalRGBhisto/2_16_s.mat deleted file mode 100644 index 654bc29..0000000 Binary files a/descriptors/globalRGBhisto/2_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_17_s.mat b/descriptors/globalRGBhisto/2_17_s.mat deleted file mode 100644 index ef28d34..0000000 Binary files a/descriptors/globalRGBhisto/2_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_18_s.mat b/descriptors/globalRGBhisto/2_18_s.mat deleted file mode 100644 index db46e0e..0000000 Binary files a/descriptors/globalRGBhisto/2_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_19_s.mat b/descriptors/globalRGBhisto/2_19_s.mat deleted file mode 100644 index ade76ec..0000000 Binary files a/descriptors/globalRGBhisto/2_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_1_s.mat b/descriptors/globalRGBhisto/2_1_s.mat deleted file mode 100644 index 54b43e3..0000000 Binary files a/descriptors/globalRGBhisto/2_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_20_s.mat b/descriptors/globalRGBhisto/2_20_s.mat deleted file mode 100644 index 1f8bef3..0000000 Binary files a/descriptors/globalRGBhisto/2_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_21_s.mat b/descriptors/globalRGBhisto/2_21_s.mat deleted file mode 100644 index 7d93666..0000000 Binary files a/descriptors/globalRGBhisto/2_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_22_s.mat b/descriptors/globalRGBhisto/2_22_s.mat deleted file mode 100644 index 6ae1e7f..0000000 Binary files a/descriptors/globalRGBhisto/2_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_23_s.mat b/descriptors/globalRGBhisto/2_23_s.mat deleted file mode 100644 index 113a22e..0000000 Binary files a/descriptors/globalRGBhisto/2_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_24_s.mat b/descriptors/globalRGBhisto/2_24_s.mat deleted file mode 100644 index ced2b18..0000000 Binary files a/descriptors/globalRGBhisto/2_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_25_s.mat b/descriptors/globalRGBhisto/2_25_s.mat deleted file mode 100644 index 824f1d1..0000000 Binary files a/descriptors/globalRGBhisto/2_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_26_s.mat b/descriptors/globalRGBhisto/2_26_s.mat deleted file mode 100644 index 8cb5f66..0000000 Binary files a/descriptors/globalRGBhisto/2_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_27_s.mat b/descriptors/globalRGBhisto/2_27_s.mat deleted file mode 100644 index 83d1740..0000000 Binary files a/descriptors/globalRGBhisto/2_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_28_s.mat b/descriptors/globalRGBhisto/2_28_s.mat deleted file mode 100644 index 47e1a39..0000000 Binary files a/descriptors/globalRGBhisto/2_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_29_s.mat b/descriptors/globalRGBhisto/2_29_s.mat deleted file mode 100644 index eb6bfc0..0000000 Binary files a/descriptors/globalRGBhisto/2_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_2_s.mat b/descriptors/globalRGBhisto/2_2_s.mat deleted file mode 100644 index 72085cf..0000000 Binary files a/descriptors/globalRGBhisto/2_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_30_s.mat b/descriptors/globalRGBhisto/2_30_s.mat deleted file mode 100644 index 2e01a02..0000000 Binary files a/descriptors/globalRGBhisto/2_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_3_s.mat b/descriptors/globalRGBhisto/2_3_s.mat deleted file mode 100644 index 7069e09..0000000 Binary files a/descriptors/globalRGBhisto/2_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_4_s.mat b/descriptors/globalRGBhisto/2_4_s.mat deleted file mode 100644 index fa40af6..0000000 Binary files a/descriptors/globalRGBhisto/2_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_5_s.mat b/descriptors/globalRGBhisto/2_5_s.mat deleted file mode 100644 index 171b48e..0000000 Binary files a/descriptors/globalRGBhisto/2_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_6_s.mat b/descriptors/globalRGBhisto/2_6_s.mat deleted file mode 100644 index 0d08cae..0000000 Binary files a/descriptors/globalRGBhisto/2_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_7_s.mat b/descriptors/globalRGBhisto/2_7_s.mat deleted file mode 100644 index b95a8e9..0000000 Binary files a/descriptors/globalRGBhisto/2_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_8_s.mat b/descriptors/globalRGBhisto/2_8_s.mat deleted file mode 100644 index 0c69da6..0000000 Binary files a/descriptors/globalRGBhisto/2_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/2_9_s.mat b/descriptors/globalRGBhisto/2_9_s.mat deleted file mode 100644 index 33bc058..0000000 Binary files a/descriptors/globalRGBhisto/2_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_10_s.mat b/descriptors/globalRGBhisto/3_10_s.mat deleted file mode 100644 index b0aebae..0000000 Binary files a/descriptors/globalRGBhisto/3_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_11_s.mat b/descriptors/globalRGBhisto/3_11_s.mat deleted file mode 100644 index 022dfee..0000000 Binary files a/descriptors/globalRGBhisto/3_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_12_s.mat b/descriptors/globalRGBhisto/3_12_s.mat deleted file mode 100644 index 51636b6..0000000 Binary files a/descriptors/globalRGBhisto/3_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_13_s.mat b/descriptors/globalRGBhisto/3_13_s.mat deleted file mode 100644 index 4541ca6..0000000 Binary files a/descriptors/globalRGBhisto/3_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_14_s.mat b/descriptors/globalRGBhisto/3_14_s.mat deleted file mode 100644 index a54714a..0000000 Binary files a/descriptors/globalRGBhisto/3_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_15_s.mat b/descriptors/globalRGBhisto/3_15_s.mat deleted file mode 100644 index 6549d1a..0000000 Binary files a/descriptors/globalRGBhisto/3_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_16_s.mat b/descriptors/globalRGBhisto/3_16_s.mat deleted file mode 100644 index d71da98..0000000 Binary files a/descriptors/globalRGBhisto/3_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_17_s.mat b/descriptors/globalRGBhisto/3_17_s.mat deleted file mode 100644 index f11bf8a..0000000 Binary files a/descriptors/globalRGBhisto/3_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_18_s.mat b/descriptors/globalRGBhisto/3_18_s.mat deleted file mode 100644 index e8d6ba6..0000000 Binary files a/descriptors/globalRGBhisto/3_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_19_s.mat b/descriptors/globalRGBhisto/3_19_s.mat deleted file mode 100644 index 3b74b84..0000000 Binary files a/descriptors/globalRGBhisto/3_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_1_s.mat b/descriptors/globalRGBhisto/3_1_s.mat deleted file mode 100644 index bcc6fa1..0000000 Binary files a/descriptors/globalRGBhisto/3_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_20_s.mat b/descriptors/globalRGBhisto/3_20_s.mat deleted file mode 100644 index 0630a27..0000000 Binary files a/descriptors/globalRGBhisto/3_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_21_s.mat b/descriptors/globalRGBhisto/3_21_s.mat deleted file mode 100644 index 7063be6..0000000 Binary files a/descriptors/globalRGBhisto/3_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_22_s.mat b/descriptors/globalRGBhisto/3_22_s.mat deleted file mode 100644 index 7a8d156..0000000 Binary files a/descriptors/globalRGBhisto/3_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_23_s.mat b/descriptors/globalRGBhisto/3_23_s.mat deleted file mode 100644 index cf86828..0000000 Binary files a/descriptors/globalRGBhisto/3_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_24_s.mat b/descriptors/globalRGBhisto/3_24_s.mat deleted file mode 100644 index 0bf8b5f..0000000 Binary files a/descriptors/globalRGBhisto/3_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_25_s.mat b/descriptors/globalRGBhisto/3_25_s.mat deleted file mode 100644 index d54ff33..0000000 Binary files a/descriptors/globalRGBhisto/3_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_26_s.mat b/descriptors/globalRGBhisto/3_26_s.mat deleted file mode 100644 index 46d4c75..0000000 Binary files a/descriptors/globalRGBhisto/3_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_27_s.mat b/descriptors/globalRGBhisto/3_27_s.mat deleted file mode 100644 index 3915185..0000000 Binary files a/descriptors/globalRGBhisto/3_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_28_s.mat b/descriptors/globalRGBhisto/3_28_s.mat deleted file mode 100644 index 39c5ace..0000000 Binary files a/descriptors/globalRGBhisto/3_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_29_s.mat b/descriptors/globalRGBhisto/3_29_s.mat deleted file mode 100644 index 90d72ac..0000000 Binary files a/descriptors/globalRGBhisto/3_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_2_s.mat b/descriptors/globalRGBhisto/3_2_s.mat deleted file mode 100644 index ac4b002..0000000 Binary files a/descriptors/globalRGBhisto/3_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_30_s.mat b/descriptors/globalRGBhisto/3_30_s.mat deleted file mode 100644 index f0cd662..0000000 Binary files a/descriptors/globalRGBhisto/3_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_3_s.mat b/descriptors/globalRGBhisto/3_3_s.mat deleted file mode 100644 index 0d4ef5f..0000000 Binary files a/descriptors/globalRGBhisto/3_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_4_s.mat b/descriptors/globalRGBhisto/3_4_s.mat deleted file mode 100644 index 8b6909e..0000000 Binary files a/descriptors/globalRGBhisto/3_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_5_s.mat b/descriptors/globalRGBhisto/3_5_s.mat deleted file mode 100644 index 78baf0f..0000000 Binary files a/descriptors/globalRGBhisto/3_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_6_s.mat b/descriptors/globalRGBhisto/3_6_s.mat deleted file mode 100644 index e55eabd..0000000 Binary files a/descriptors/globalRGBhisto/3_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_7_s.mat b/descriptors/globalRGBhisto/3_7_s.mat deleted file mode 100644 index 2b382d0..0000000 Binary files a/descriptors/globalRGBhisto/3_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_8_s.mat b/descriptors/globalRGBhisto/3_8_s.mat deleted file mode 100644 index ba5cbce..0000000 Binary files a/descriptors/globalRGBhisto/3_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/3_9_s.mat b/descriptors/globalRGBhisto/3_9_s.mat deleted file mode 100644 index ba05639..0000000 Binary files a/descriptors/globalRGBhisto/3_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_10_s.mat b/descriptors/globalRGBhisto/4_10_s.mat deleted file mode 100644 index 2b88f2c..0000000 Binary files a/descriptors/globalRGBhisto/4_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_11_s.mat b/descriptors/globalRGBhisto/4_11_s.mat deleted file mode 100644 index 2115137..0000000 Binary files a/descriptors/globalRGBhisto/4_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_12_s.mat b/descriptors/globalRGBhisto/4_12_s.mat deleted file mode 100644 index bb77bd4..0000000 Binary files a/descriptors/globalRGBhisto/4_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_13_s.mat b/descriptors/globalRGBhisto/4_13_s.mat deleted file mode 100644 index 0cde7c7..0000000 Binary files a/descriptors/globalRGBhisto/4_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_14_s.mat b/descriptors/globalRGBhisto/4_14_s.mat deleted file mode 100644 index 3f12d2f..0000000 Binary files a/descriptors/globalRGBhisto/4_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_15_s.mat b/descriptors/globalRGBhisto/4_15_s.mat deleted file mode 100644 index aca1257..0000000 Binary files a/descriptors/globalRGBhisto/4_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_16_s.mat b/descriptors/globalRGBhisto/4_16_s.mat deleted file mode 100644 index e82380f..0000000 Binary files a/descriptors/globalRGBhisto/4_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_17_s.mat b/descriptors/globalRGBhisto/4_17_s.mat deleted file mode 100644 index 1e833ca..0000000 Binary files a/descriptors/globalRGBhisto/4_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_18_s.mat b/descriptors/globalRGBhisto/4_18_s.mat deleted file mode 100644 index 710312d..0000000 Binary files a/descriptors/globalRGBhisto/4_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_19_s.mat b/descriptors/globalRGBhisto/4_19_s.mat deleted file mode 100644 index ae5767f..0000000 Binary files a/descriptors/globalRGBhisto/4_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_1_s.mat b/descriptors/globalRGBhisto/4_1_s.mat deleted file mode 100644 index a32de16..0000000 Binary files a/descriptors/globalRGBhisto/4_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_20_s.mat b/descriptors/globalRGBhisto/4_20_s.mat deleted file mode 100644 index 18edf0a..0000000 Binary files a/descriptors/globalRGBhisto/4_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_21_s.mat b/descriptors/globalRGBhisto/4_21_s.mat deleted file mode 100644 index 951fb52..0000000 Binary files a/descriptors/globalRGBhisto/4_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_22_s.mat b/descriptors/globalRGBhisto/4_22_s.mat deleted file mode 100644 index 79f2579..0000000 Binary files a/descriptors/globalRGBhisto/4_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_23_s.mat b/descriptors/globalRGBhisto/4_23_s.mat deleted file mode 100644 index 31d6609..0000000 Binary files a/descriptors/globalRGBhisto/4_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_24_s.mat b/descriptors/globalRGBhisto/4_24_s.mat deleted file mode 100644 index 9fbb13b..0000000 Binary files a/descriptors/globalRGBhisto/4_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_25_s.mat b/descriptors/globalRGBhisto/4_25_s.mat deleted file mode 100644 index 63e4ef3..0000000 Binary files a/descriptors/globalRGBhisto/4_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_26_s.mat b/descriptors/globalRGBhisto/4_26_s.mat deleted file mode 100644 index 7dbc68e..0000000 Binary files a/descriptors/globalRGBhisto/4_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_27_s.mat b/descriptors/globalRGBhisto/4_27_s.mat deleted file mode 100644 index ff3a8c9..0000000 Binary files a/descriptors/globalRGBhisto/4_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_28_s.mat b/descriptors/globalRGBhisto/4_28_s.mat deleted file mode 100644 index 9486613..0000000 Binary files a/descriptors/globalRGBhisto/4_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_29_s.mat b/descriptors/globalRGBhisto/4_29_s.mat deleted file mode 100644 index 04edfc9..0000000 Binary files a/descriptors/globalRGBhisto/4_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_2_s.mat b/descriptors/globalRGBhisto/4_2_s.mat deleted file mode 100644 index 2b20fca..0000000 Binary files a/descriptors/globalRGBhisto/4_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_30_s.mat b/descriptors/globalRGBhisto/4_30_s.mat deleted file mode 100644 index e661227..0000000 Binary files a/descriptors/globalRGBhisto/4_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_3_s.mat b/descriptors/globalRGBhisto/4_3_s.mat deleted file mode 100644 index ad7287b..0000000 Binary files a/descriptors/globalRGBhisto/4_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_4_s.mat b/descriptors/globalRGBhisto/4_4_s.mat deleted file mode 100644 index 83fbef3..0000000 Binary files a/descriptors/globalRGBhisto/4_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_5_s.mat b/descriptors/globalRGBhisto/4_5_s.mat deleted file mode 100644 index b2a624a..0000000 Binary files a/descriptors/globalRGBhisto/4_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_6_s.mat b/descriptors/globalRGBhisto/4_6_s.mat deleted file mode 100644 index 6a5a87e..0000000 Binary files a/descriptors/globalRGBhisto/4_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_7_s.mat b/descriptors/globalRGBhisto/4_7_s.mat deleted file mode 100644 index 48a4fe1..0000000 Binary files a/descriptors/globalRGBhisto/4_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_8_s.mat b/descriptors/globalRGBhisto/4_8_s.mat deleted file mode 100644 index caf454b..0000000 Binary files a/descriptors/globalRGBhisto/4_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/4_9_s.mat b/descriptors/globalRGBhisto/4_9_s.mat deleted file mode 100644 index 2d8eb48..0000000 Binary files a/descriptors/globalRGBhisto/4_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_10_s.mat b/descriptors/globalRGBhisto/5_10_s.mat deleted file mode 100644 index 57945ff..0000000 Binary files a/descriptors/globalRGBhisto/5_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_11_s.mat b/descriptors/globalRGBhisto/5_11_s.mat deleted file mode 100644 index 0221991..0000000 Binary files a/descriptors/globalRGBhisto/5_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_12_s.mat b/descriptors/globalRGBhisto/5_12_s.mat deleted file mode 100644 index b50d427..0000000 Binary files a/descriptors/globalRGBhisto/5_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_13_s.mat b/descriptors/globalRGBhisto/5_13_s.mat deleted file mode 100644 index 62db62e..0000000 Binary files a/descriptors/globalRGBhisto/5_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_14_s.mat b/descriptors/globalRGBhisto/5_14_s.mat deleted file mode 100644 index 26c87ac..0000000 Binary files a/descriptors/globalRGBhisto/5_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_15_s.mat b/descriptors/globalRGBhisto/5_15_s.mat deleted file mode 100644 index 4d85576..0000000 Binary files a/descriptors/globalRGBhisto/5_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_16_s.mat b/descriptors/globalRGBhisto/5_16_s.mat deleted file mode 100644 index 8464a3c..0000000 Binary files a/descriptors/globalRGBhisto/5_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_17_s.mat b/descriptors/globalRGBhisto/5_17_s.mat deleted file mode 100644 index 694e2d1..0000000 Binary files a/descriptors/globalRGBhisto/5_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_18_s.mat b/descriptors/globalRGBhisto/5_18_s.mat deleted file mode 100644 index f32531b..0000000 Binary files a/descriptors/globalRGBhisto/5_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_19_s.mat b/descriptors/globalRGBhisto/5_19_s.mat deleted file mode 100644 index 7c55012..0000000 Binary files a/descriptors/globalRGBhisto/5_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_1_s.mat b/descriptors/globalRGBhisto/5_1_s.mat deleted file mode 100644 index 4241ea7..0000000 Binary files a/descriptors/globalRGBhisto/5_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_20_s.mat b/descriptors/globalRGBhisto/5_20_s.mat deleted file mode 100644 index 7e53fa9..0000000 Binary files a/descriptors/globalRGBhisto/5_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_21_s.mat b/descriptors/globalRGBhisto/5_21_s.mat deleted file mode 100644 index 8fe9fd8..0000000 Binary files a/descriptors/globalRGBhisto/5_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_22_s.mat b/descriptors/globalRGBhisto/5_22_s.mat deleted file mode 100644 index 550edda..0000000 Binary files a/descriptors/globalRGBhisto/5_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_23_s.mat b/descriptors/globalRGBhisto/5_23_s.mat deleted file mode 100644 index a60deb8..0000000 Binary files a/descriptors/globalRGBhisto/5_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_24_s.mat b/descriptors/globalRGBhisto/5_24_s.mat deleted file mode 100644 index 2597b32..0000000 Binary files a/descriptors/globalRGBhisto/5_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_25_s.mat b/descriptors/globalRGBhisto/5_25_s.mat deleted file mode 100644 index 96358d8..0000000 Binary files a/descriptors/globalRGBhisto/5_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_26_s.mat b/descriptors/globalRGBhisto/5_26_s.mat deleted file mode 100644 index 2077670..0000000 Binary files a/descriptors/globalRGBhisto/5_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_27_s.mat b/descriptors/globalRGBhisto/5_27_s.mat deleted file mode 100644 index 7ceaa0a..0000000 Binary files a/descriptors/globalRGBhisto/5_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_28_s.mat b/descriptors/globalRGBhisto/5_28_s.mat deleted file mode 100644 index d88cb08..0000000 Binary files a/descriptors/globalRGBhisto/5_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_29_s.mat b/descriptors/globalRGBhisto/5_29_s.mat deleted file mode 100644 index 90ca071..0000000 Binary files a/descriptors/globalRGBhisto/5_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_2_s.mat b/descriptors/globalRGBhisto/5_2_s.mat deleted file mode 100644 index 9fe9b4b..0000000 Binary files a/descriptors/globalRGBhisto/5_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_30_s.mat b/descriptors/globalRGBhisto/5_30_s.mat deleted file mode 100644 index 4e1be03..0000000 Binary files a/descriptors/globalRGBhisto/5_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_3_s.mat b/descriptors/globalRGBhisto/5_3_s.mat deleted file mode 100644 index 4e1ed37..0000000 Binary files a/descriptors/globalRGBhisto/5_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_4_s.mat b/descriptors/globalRGBhisto/5_4_s.mat deleted file mode 100644 index 33ed702..0000000 Binary files a/descriptors/globalRGBhisto/5_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_5_s.mat b/descriptors/globalRGBhisto/5_5_s.mat deleted file mode 100644 index c10fd60..0000000 Binary files a/descriptors/globalRGBhisto/5_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_6_s.mat b/descriptors/globalRGBhisto/5_6_s.mat deleted file mode 100644 index 38c6889..0000000 Binary files a/descriptors/globalRGBhisto/5_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_7_s.mat b/descriptors/globalRGBhisto/5_7_s.mat deleted file mode 100644 index 4598526..0000000 Binary files a/descriptors/globalRGBhisto/5_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_8_s.mat b/descriptors/globalRGBhisto/5_8_s.mat deleted file mode 100644 index e57d937..0000000 Binary files a/descriptors/globalRGBhisto/5_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/5_9_s.mat b/descriptors/globalRGBhisto/5_9_s.mat deleted file mode 100644 index 84a7c5e..0000000 Binary files a/descriptors/globalRGBhisto/5_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_10_s.mat b/descriptors/globalRGBhisto/6_10_s.mat deleted file mode 100644 index c4bfe86..0000000 Binary files a/descriptors/globalRGBhisto/6_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_11_s.mat b/descriptors/globalRGBhisto/6_11_s.mat deleted file mode 100644 index 89f1e06..0000000 Binary files a/descriptors/globalRGBhisto/6_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_12_s.mat b/descriptors/globalRGBhisto/6_12_s.mat deleted file mode 100644 index da0313a..0000000 Binary files a/descriptors/globalRGBhisto/6_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_13_s.mat b/descriptors/globalRGBhisto/6_13_s.mat deleted file mode 100644 index 79dfdaa..0000000 Binary files a/descriptors/globalRGBhisto/6_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_14_s.mat b/descriptors/globalRGBhisto/6_14_s.mat deleted file mode 100644 index 0dd4664..0000000 Binary files a/descriptors/globalRGBhisto/6_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_15_s.mat b/descriptors/globalRGBhisto/6_15_s.mat deleted file mode 100644 index 78f7f02..0000000 Binary files a/descriptors/globalRGBhisto/6_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_16_s.mat b/descriptors/globalRGBhisto/6_16_s.mat deleted file mode 100644 index 166d7b6..0000000 Binary files a/descriptors/globalRGBhisto/6_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_17_s.mat b/descriptors/globalRGBhisto/6_17_s.mat deleted file mode 100644 index 5aa9f0c..0000000 Binary files a/descriptors/globalRGBhisto/6_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_18_s.mat b/descriptors/globalRGBhisto/6_18_s.mat deleted file mode 100644 index 4db60d0..0000000 Binary files a/descriptors/globalRGBhisto/6_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_19_s.mat b/descriptors/globalRGBhisto/6_19_s.mat deleted file mode 100644 index bbcd603..0000000 Binary files a/descriptors/globalRGBhisto/6_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_1_s.mat b/descriptors/globalRGBhisto/6_1_s.mat deleted file mode 100644 index e31315c..0000000 Binary files a/descriptors/globalRGBhisto/6_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_20_s.mat b/descriptors/globalRGBhisto/6_20_s.mat deleted file mode 100644 index 4b02b34..0000000 Binary files a/descriptors/globalRGBhisto/6_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_21_s.mat b/descriptors/globalRGBhisto/6_21_s.mat deleted file mode 100644 index 1c8a9d0..0000000 Binary files a/descriptors/globalRGBhisto/6_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_22_s.mat b/descriptors/globalRGBhisto/6_22_s.mat deleted file mode 100644 index 5f3e46a..0000000 Binary files a/descriptors/globalRGBhisto/6_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_23_s.mat b/descriptors/globalRGBhisto/6_23_s.mat deleted file mode 100644 index 23b0ea7..0000000 Binary files a/descriptors/globalRGBhisto/6_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_24_s.mat b/descriptors/globalRGBhisto/6_24_s.mat deleted file mode 100644 index 0a1b858..0000000 Binary files a/descriptors/globalRGBhisto/6_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_25_s.mat b/descriptors/globalRGBhisto/6_25_s.mat deleted file mode 100644 index 0b2463a..0000000 Binary files a/descriptors/globalRGBhisto/6_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_26_s.mat b/descriptors/globalRGBhisto/6_26_s.mat deleted file mode 100644 index c7a40c8..0000000 Binary files a/descriptors/globalRGBhisto/6_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_27_s.mat b/descriptors/globalRGBhisto/6_27_s.mat deleted file mode 100644 index da5d2b3..0000000 Binary files a/descriptors/globalRGBhisto/6_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_28_s.mat b/descriptors/globalRGBhisto/6_28_s.mat deleted file mode 100644 index 9fe4ee2..0000000 Binary files a/descriptors/globalRGBhisto/6_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_29_s.mat b/descriptors/globalRGBhisto/6_29_s.mat deleted file mode 100644 index 7b900b8..0000000 Binary files a/descriptors/globalRGBhisto/6_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_2_s.mat b/descriptors/globalRGBhisto/6_2_s.mat deleted file mode 100644 index ad78b37..0000000 Binary files a/descriptors/globalRGBhisto/6_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_30_s.mat b/descriptors/globalRGBhisto/6_30_s.mat deleted file mode 100644 index e6f78ae..0000000 Binary files a/descriptors/globalRGBhisto/6_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_3_s.mat b/descriptors/globalRGBhisto/6_3_s.mat deleted file mode 100644 index 6bebe19..0000000 Binary files a/descriptors/globalRGBhisto/6_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_4_s.mat b/descriptors/globalRGBhisto/6_4_s.mat deleted file mode 100644 index 5f7530c..0000000 Binary files a/descriptors/globalRGBhisto/6_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_5_s.mat b/descriptors/globalRGBhisto/6_5_s.mat deleted file mode 100644 index 5c73f1e..0000000 Binary files a/descriptors/globalRGBhisto/6_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_6_s.mat b/descriptors/globalRGBhisto/6_6_s.mat deleted file mode 100644 index 495869f..0000000 Binary files a/descriptors/globalRGBhisto/6_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_7_s.mat b/descriptors/globalRGBhisto/6_7_s.mat deleted file mode 100644 index 442309e..0000000 Binary files a/descriptors/globalRGBhisto/6_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_8_s.mat b/descriptors/globalRGBhisto/6_8_s.mat deleted file mode 100644 index 63dae75..0000000 Binary files a/descriptors/globalRGBhisto/6_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/6_9_s.mat b/descriptors/globalRGBhisto/6_9_s.mat deleted file mode 100644 index 57b4fc0..0000000 Binary files a/descriptors/globalRGBhisto/6_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_10_s.mat b/descriptors/globalRGBhisto/7_10_s.mat deleted file mode 100644 index edf099f..0000000 Binary files a/descriptors/globalRGBhisto/7_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_11_s.mat b/descriptors/globalRGBhisto/7_11_s.mat deleted file mode 100644 index 30f27e8..0000000 Binary files a/descriptors/globalRGBhisto/7_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_12_s.mat b/descriptors/globalRGBhisto/7_12_s.mat deleted file mode 100644 index 3ca59b4..0000000 Binary files a/descriptors/globalRGBhisto/7_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_13_s.mat b/descriptors/globalRGBhisto/7_13_s.mat deleted file mode 100644 index 517219f..0000000 Binary files a/descriptors/globalRGBhisto/7_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_14_s.mat b/descriptors/globalRGBhisto/7_14_s.mat deleted file mode 100644 index ca1eace..0000000 Binary files a/descriptors/globalRGBhisto/7_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_15_s.mat b/descriptors/globalRGBhisto/7_15_s.mat deleted file mode 100644 index 2bfc2fd..0000000 Binary files a/descriptors/globalRGBhisto/7_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_16_s.mat b/descriptors/globalRGBhisto/7_16_s.mat deleted file mode 100644 index 95c1bfb..0000000 Binary files a/descriptors/globalRGBhisto/7_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_17_s.mat b/descriptors/globalRGBhisto/7_17_s.mat deleted file mode 100644 index 11291be..0000000 Binary files a/descriptors/globalRGBhisto/7_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_18_s.mat b/descriptors/globalRGBhisto/7_18_s.mat deleted file mode 100644 index 62c666e..0000000 Binary files a/descriptors/globalRGBhisto/7_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_19_s.mat b/descriptors/globalRGBhisto/7_19_s.mat deleted file mode 100644 index 3ad55a3..0000000 Binary files a/descriptors/globalRGBhisto/7_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_1_s.mat b/descriptors/globalRGBhisto/7_1_s.mat deleted file mode 100644 index 82c37d1..0000000 Binary files a/descriptors/globalRGBhisto/7_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_20_s.mat b/descriptors/globalRGBhisto/7_20_s.mat deleted file mode 100644 index fbcca51..0000000 Binary files a/descriptors/globalRGBhisto/7_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_21_s.mat b/descriptors/globalRGBhisto/7_21_s.mat deleted file mode 100644 index 48b3bf9..0000000 Binary files a/descriptors/globalRGBhisto/7_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_22_s.mat b/descriptors/globalRGBhisto/7_22_s.mat deleted file mode 100644 index c597c03..0000000 Binary files a/descriptors/globalRGBhisto/7_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_23_s.mat b/descriptors/globalRGBhisto/7_23_s.mat deleted file mode 100644 index cfa6be4..0000000 Binary files a/descriptors/globalRGBhisto/7_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_24_s.mat b/descriptors/globalRGBhisto/7_24_s.mat deleted file mode 100644 index fb0f160..0000000 Binary files a/descriptors/globalRGBhisto/7_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_25_s.mat b/descriptors/globalRGBhisto/7_25_s.mat deleted file mode 100644 index a4b210e..0000000 Binary files a/descriptors/globalRGBhisto/7_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_26_s.mat b/descriptors/globalRGBhisto/7_26_s.mat deleted file mode 100644 index 34003dd..0000000 Binary files a/descriptors/globalRGBhisto/7_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_27_s.mat b/descriptors/globalRGBhisto/7_27_s.mat deleted file mode 100644 index d1bd55f..0000000 Binary files a/descriptors/globalRGBhisto/7_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_28_s.mat b/descriptors/globalRGBhisto/7_28_s.mat deleted file mode 100644 index db0414b..0000000 Binary files a/descriptors/globalRGBhisto/7_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_29_s.mat b/descriptors/globalRGBhisto/7_29_s.mat deleted file mode 100644 index 7cb4e24..0000000 Binary files a/descriptors/globalRGBhisto/7_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_2_s.mat b/descriptors/globalRGBhisto/7_2_s.mat deleted file mode 100644 index 6f57092..0000000 Binary files a/descriptors/globalRGBhisto/7_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_30_s.mat b/descriptors/globalRGBhisto/7_30_s.mat deleted file mode 100644 index 8575129..0000000 Binary files a/descriptors/globalRGBhisto/7_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_3_s.mat b/descriptors/globalRGBhisto/7_3_s.mat deleted file mode 100644 index 8cdfcec..0000000 Binary files a/descriptors/globalRGBhisto/7_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_4_s.mat b/descriptors/globalRGBhisto/7_4_s.mat deleted file mode 100644 index 2e8bcc3..0000000 Binary files a/descriptors/globalRGBhisto/7_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_5_s.mat b/descriptors/globalRGBhisto/7_5_s.mat deleted file mode 100644 index 6e38c77..0000000 Binary files a/descriptors/globalRGBhisto/7_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_6_s.mat b/descriptors/globalRGBhisto/7_6_s.mat deleted file mode 100644 index 2c0268a..0000000 Binary files a/descriptors/globalRGBhisto/7_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_7_s.mat b/descriptors/globalRGBhisto/7_7_s.mat deleted file mode 100644 index 7468b75..0000000 Binary files a/descriptors/globalRGBhisto/7_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_8_s.mat b/descriptors/globalRGBhisto/7_8_s.mat deleted file mode 100644 index e6f2c8f..0000000 Binary files a/descriptors/globalRGBhisto/7_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/7_9_s.mat b/descriptors/globalRGBhisto/7_9_s.mat deleted file mode 100644 index cca2d17..0000000 Binary files a/descriptors/globalRGBhisto/7_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_10_s.mat b/descriptors/globalRGBhisto/8_10_s.mat deleted file mode 100644 index e551536..0000000 Binary files a/descriptors/globalRGBhisto/8_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_11_s.mat b/descriptors/globalRGBhisto/8_11_s.mat deleted file mode 100644 index 9d4a5f4..0000000 Binary files a/descriptors/globalRGBhisto/8_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_12_s.mat b/descriptors/globalRGBhisto/8_12_s.mat deleted file mode 100644 index 56534a1..0000000 Binary files a/descriptors/globalRGBhisto/8_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_13_s.mat b/descriptors/globalRGBhisto/8_13_s.mat deleted file mode 100644 index 13e8843..0000000 Binary files a/descriptors/globalRGBhisto/8_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_14_s.mat b/descriptors/globalRGBhisto/8_14_s.mat deleted file mode 100644 index 30cfabe..0000000 Binary files a/descriptors/globalRGBhisto/8_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_15_s.mat b/descriptors/globalRGBhisto/8_15_s.mat deleted file mode 100644 index cf0aeb4..0000000 Binary files a/descriptors/globalRGBhisto/8_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_16_s.mat b/descriptors/globalRGBhisto/8_16_s.mat deleted file mode 100644 index f7b6a26..0000000 Binary files a/descriptors/globalRGBhisto/8_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_17_s.mat b/descriptors/globalRGBhisto/8_17_s.mat deleted file mode 100644 index 823c9d2..0000000 Binary files a/descriptors/globalRGBhisto/8_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_18_s.mat b/descriptors/globalRGBhisto/8_18_s.mat deleted file mode 100644 index cf66565..0000000 Binary files a/descriptors/globalRGBhisto/8_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_19_s.mat b/descriptors/globalRGBhisto/8_19_s.mat deleted file mode 100644 index 7ad5281..0000000 Binary files a/descriptors/globalRGBhisto/8_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_1_s.mat b/descriptors/globalRGBhisto/8_1_s.mat deleted file mode 100644 index 68c29ee..0000000 Binary files a/descriptors/globalRGBhisto/8_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_20_s.mat b/descriptors/globalRGBhisto/8_20_s.mat deleted file mode 100644 index eeaf0ce..0000000 Binary files a/descriptors/globalRGBhisto/8_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_21_s.mat b/descriptors/globalRGBhisto/8_21_s.mat deleted file mode 100644 index afcf79f..0000000 Binary files a/descriptors/globalRGBhisto/8_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_22_s.mat b/descriptors/globalRGBhisto/8_22_s.mat deleted file mode 100644 index 91d3cec..0000000 Binary files a/descriptors/globalRGBhisto/8_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_23_s.mat b/descriptors/globalRGBhisto/8_23_s.mat deleted file mode 100644 index 66f5b9d..0000000 Binary files a/descriptors/globalRGBhisto/8_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_24_s.mat b/descriptors/globalRGBhisto/8_24_s.mat deleted file mode 100644 index c7d8239..0000000 Binary files a/descriptors/globalRGBhisto/8_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_25_s.mat b/descriptors/globalRGBhisto/8_25_s.mat deleted file mode 100644 index 855ed77..0000000 Binary files a/descriptors/globalRGBhisto/8_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_26_s.mat b/descriptors/globalRGBhisto/8_26_s.mat deleted file mode 100644 index d9af12e..0000000 Binary files a/descriptors/globalRGBhisto/8_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_27_s.mat b/descriptors/globalRGBhisto/8_27_s.mat deleted file mode 100644 index 1108a62..0000000 Binary files a/descriptors/globalRGBhisto/8_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_28_s.mat b/descriptors/globalRGBhisto/8_28_s.mat deleted file mode 100644 index 8431690..0000000 Binary files a/descriptors/globalRGBhisto/8_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_29_s.mat b/descriptors/globalRGBhisto/8_29_s.mat deleted file mode 100644 index 4c8cb65..0000000 Binary files a/descriptors/globalRGBhisto/8_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_2_s.mat b/descriptors/globalRGBhisto/8_2_s.mat deleted file mode 100644 index dff91aa..0000000 Binary files a/descriptors/globalRGBhisto/8_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_30_s.mat b/descriptors/globalRGBhisto/8_30_s.mat deleted file mode 100644 index 379268c..0000000 Binary files a/descriptors/globalRGBhisto/8_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_3_s.mat b/descriptors/globalRGBhisto/8_3_s.mat deleted file mode 100644 index f8ca47b..0000000 Binary files a/descriptors/globalRGBhisto/8_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_4_s.mat b/descriptors/globalRGBhisto/8_4_s.mat deleted file mode 100644 index 145807f..0000000 Binary files a/descriptors/globalRGBhisto/8_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_5_s.mat b/descriptors/globalRGBhisto/8_5_s.mat deleted file mode 100644 index 8b6f420..0000000 Binary files a/descriptors/globalRGBhisto/8_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_6_s.mat b/descriptors/globalRGBhisto/8_6_s.mat deleted file mode 100644 index ca15d60..0000000 Binary files a/descriptors/globalRGBhisto/8_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_7_s.mat b/descriptors/globalRGBhisto/8_7_s.mat deleted file mode 100644 index cc6ecfc..0000000 Binary files a/descriptors/globalRGBhisto/8_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_8_s.mat b/descriptors/globalRGBhisto/8_8_s.mat deleted file mode 100644 index 7548ba7..0000000 Binary files a/descriptors/globalRGBhisto/8_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/8_9_s.mat b/descriptors/globalRGBhisto/8_9_s.mat deleted file mode 100644 index 6aee681..0000000 Binary files a/descriptors/globalRGBhisto/8_9_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_10_s.mat b/descriptors/globalRGBhisto/9_10_s.mat deleted file mode 100644 index 2abbc50..0000000 Binary files a/descriptors/globalRGBhisto/9_10_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_11_s.mat b/descriptors/globalRGBhisto/9_11_s.mat deleted file mode 100644 index fccadfe..0000000 Binary files a/descriptors/globalRGBhisto/9_11_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_12_s.mat b/descriptors/globalRGBhisto/9_12_s.mat deleted file mode 100644 index 8b35169..0000000 Binary files a/descriptors/globalRGBhisto/9_12_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_13_s.mat b/descriptors/globalRGBhisto/9_13_s.mat deleted file mode 100644 index 630855a..0000000 Binary files a/descriptors/globalRGBhisto/9_13_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_14_s.mat b/descriptors/globalRGBhisto/9_14_s.mat deleted file mode 100644 index cac7d6a..0000000 Binary files a/descriptors/globalRGBhisto/9_14_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_15_s.mat b/descriptors/globalRGBhisto/9_15_s.mat deleted file mode 100644 index b575d8b..0000000 Binary files a/descriptors/globalRGBhisto/9_15_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_16_s.mat b/descriptors/globalRGBhisto/9_16_s.mat deleted file mode 100644 index f584c09..0000000 Binary files a/descriptors/globalRGBhisto/9_16_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_17_s.mat b/descriptors/globalRGBhisto/9_17_s.mat deleted file mode 100644 index 0561fe8..0000000 Binary files a/descriptors/globalRGBhisto/9_17_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_18_s.mat b/descriptors/globalRGBhisto/9_18_s.mat deleted file mode 100644 index 8eb7857..0000000 Binary files a/descriptors/globalRGBhisto/9_18_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_19_s.mat b/descriptors/globalRGBhisto/9_19_s.mat deleted file mode 100644 index b2d3beb..0000000 Binary files a/descriptors/globalRGBhisto/9_19_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_1_s.mat b/descriptors/globalRGBhisto/9_1_s.mat deleted file mode 100644 index 7ec5eb9..0000000 Binary files a/descriptors/globalRGBhisto/9_1_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_20_s.mat b/descriptors/globalRGBhisto/9_20_s.mat deleted file mode 100644 index baebb60..0000000 Binary files a/descriptors/globalRGBhisto/9_20_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_21_s.mat b/descriptors/globalRGBhisto/9_21_s.mat deleted file mode 100644 index 5b57866..0000000 Binary files a/descriptors/globalRGBhisto/9_21_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_22_s.mat b/descriptors/globalRGBhisto/9_22_s.mat deleted file mode 100644 index b1e7f51..0000000 Binary files a/descriptors/globalRGBhisto/9_22_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_23_s.mat b/descriptors/globalRGBhisto/9_23_s.mat deleted file mode 100644 index ebe6e23..0000000 Binary files a/descriptors/globalRGBhisto/9_23_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_24_s.mat b/descriptors/globalRGBhisto/9_24_s.mat deleted file mode 100644 index bd16312..0000000 Binary files a/descriptors/globalRGBhisto/9_24_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_25_s.mat b/descriptors/globalRGBhisto/9_25_s.mat deleted file mode 100644 index 7856775..0000000 Binary files a/descriptors/globalRGBhisto/9_25_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_26_s.mat b/descriptors/globalRGBhisto/9_26_s.mat deleted file mode 100644 index b6e38a0..0000000 Binary files a/descriptors/globalRGBhisto/9_26_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_27_s.mat b/descriptors/globalRGBhisto/9_27_s.mat deleted file mode 100644 index c1fcac6..0000000 Binary files a/descriptors/globalRGBhisto/9_27_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_28_s.mat b/descriptors/globalRGBhisto/9_28_s.mat deleted file mode 100644 index 91be6b5..0000000 Binary files a/descriptors/globalRGBhisto/9_28_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_29_s.mat b/descriptors/globalRGBhisto/9_29_s.mat deleted file mode 100644 index 2a205bc..0000000 Binary files a/descriptors/globalRGBhisto/9_29_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_2_s.mat b/descriptors/globalRGBhisto/9_2_s.mat deleted file mode 100644 index 1264852..0000000 Binary files a/descriptors/globalRGBhisto/9_2_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_30_s.mat b/descriptors/globalRGBhisto/9_30_s.mat deleted file mode 100644 index f45fba5..0000000 Binary files a/descriptors/globalRGBhisto/9_30_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_3_s.mat b/descriptors/globalRGBhisto/9_3_s.mat deleted file mode 100644 index a7301f5..0000000 Binary files a/descriptors/globalRGBhisto/9_3_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_4_s.mat b/descriptors/globalRGBhisto/9_4_s.mat deleted file mode 100644 index 672ede8..0000000 Binary files a/descriptors/globalRGBhisto/9_4_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_5_s.mat b/descriptors/globalRGBhisto/9_5_s.mat deleted file mode 100644 index 62308c0..0000000 Binary files a/descriptors/globalRGBhisto/9_5_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_6_s.mat b/descriptors/globalRGBhisto/9_6_s.mat deleted file mode 100644 index b7ff9cf..0000000 Binary files a/descriptors/globalRGBhisto/9_6_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_7_s.mat b/descriptors/globalRGBhisto/9_7_s.mat deleted file mode 100644 index bd3ebba..0000000 Binary files a/descriptors/globalRGBhisto/9_7_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_8_s.mat b/descriptors/globalRGBhisto/9_8_s.mat deleted file mode 100644 index 849a3c6..0000000 Binary files a/descriptors/globalRGBhisto/9_8_s.mat and /dev/null differ diff --git a/descriptors/globalRGBhisto/9_9_s.mat b/descriptors/globalRGBhisto/9_9_s.mat deleted file mode 100644 index 4ab9967..0000000 Binary files a/descriptors/globalRGBhisto/9_9_s.mat and /dev/null differ diff --git a/extractGlobalColHist.m b/extractGlobalColHist.m index e633355..ece113f 100644 --- a/extractGlobalColHist.m +++ b/extractGlobalColHist.m @@ -1,36 +1,43 @@ function F=extractGlobalColHist(img) -divs = 2; +divs = 15; -dimensions = size(img); +qimg = floor(img .* divs); +bin = qimg(:,:,1) * divs^2 + qimg(:,:,2) * divs^1 + qimg(:,:,3); -width = dimensions(2); -height = dimensions(1); +vals = reshape(bin, 1, size(bin, 1) * size(bin, 2)); -pixel_count = width * height; - -bin_values = zeros([1, pixel_count]); -count = 1; -for i = 1:length(img(:, 1, 1)) - for j = 1:length(img(1, :, 1)) - red = img(i, j, 1); - green = img(i, j, 2); - blue = img(i, j, 3); - - red_bin = floor(red*divs); - green_bin = floor(green*divs); - blue_bin = floor(blue*divs); - - bin_value = red_bin * (divs^2) + green_bin * (divs^1) + blue_bin; - - bin_values(count) = bin_value; - - count = count + 1; - end -end +% dimensions = size(img); +% +% width = dimensions(2); +% height = dimensions(1); +% +% pixel_count = width * height; +% +% bin_values = zeros([1, pixel_count]); +% count = 1; +% for i = 1:length(img(:, 1, 1)) +% for j = 1:length(img(1, :, 1)) +% red = img(i, j, 1); +% green = img(i, j, 2); +% blue = img(i, j, 3); +% +% red_bin = floor(red*divs); +% green_bin = floor(green*divs); +% blue_bin = floor(blue*divs); +% +% bin_value = red_bin * (divs^2) + green_bin * (divs^1) + blue_bin; +% +% bin_values(count) = bin_value; +% +% count = count + 1; +% end +% end % hist_values = histogram(bin_values, (divs^3 - 1)).Values ./ pixel_count; -hist_values = histogram(bin_values, (divs^3 - 1), 'Normalization', 'probability').Values; +% hist_values = histogram(bin_values, divs^3, 'Normalization', 'probability').Values; + +hist_values = histogram(vals, divs^3, 'Normalization', 'probability').Values; F=hist_values; return; \ No newline at end of file