From ecd10a0689bc909a699be8c93319825287f6bd37 Mon Sep 17 00:00:00 2001 From: anapt Date: Sat, 27 Jan 2018 20:31:42 +0200 Subject: [PATCH] old dataset --- mean_shift_cuda/meanshift.cu | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mean_shift_cuda/meanshift.cu b/mean_shift_cuda/meanshift.cu index bb6d9b3..2ebae16 100644 --- a/mean_shift_cuda/meanshift.cu +++ b/mean_shift_cuda/meanshift.cu @@ -5,10 +5,10 @@ #include "meanshift_utils.h" #include "meanshift_gpu_utils.h" -int DEVIATION = 31000; -int NUMBER_OF_POINTS = 5000; +int DEVIATION = 1; +int NUMBER_OF_POINTS = 600; int DIMENSIONS = 2; -const char *POINTS_FILENAME = "../data/s4"; +const char *POINTS_FILENAME = "../data/X.bin"; const char *LABELS_FILENAME = "../data/L.bin"; parameters params;