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;