Browse Source

prints

master
Pachni Tsitiridou A 7 years ago
parent
commit
91a639612e
  1. 4
      mean_shift_cuda/meanshift.cu

4
mean_shift_cuda/meanshift.cu

@ -23,7 +23,7 @@ int main(int argc, char **argv){
params.epsilon = 0.0001; params.epsilon = 0.0001;
params.verbose = false; params.verbose = false;
params.display = true; params.display = true;
printf("here::");
//get_args(argc, argv, &params); //commented out while in development //get_args(argc, argv, &params); //commented out while in development
init(&vectors, &labels); init(&vectors, &labels);
@ -31,7 +31,7 @@ int main(int argc, char **argv){
// tic // tic
gettimeofday (&startwtime, NULL); gettimeofday (&startwtime, NULL);
printf("wtf");
iterations = meanshift(vectors, &shifted_points, DEVIATION, &params); iterations = meanshift(vectors, &shifted_points, DEVIATION, &params);
// toc // toc

Loading…
Cancel
Save