Browse Source

prints

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

6
mean_shift_cuda/meanshift.cu

@ -23,7 +23,7 @@ int main(int argc, char **argv){
params.epsilon = 0.0001;
params.verbose = false;
params.display = true;
printf("here::");
//get_args(argc, argv, &params); //commented out while in development
init(&vectors, &labels);
@ -31,7 +31,7 @@ int main(int argc, char **argv){
// tic
gettimeofday (&startwtime, NULL);
printf("wtf");
iterations = meanshift(vectors, &shifted_points, DEVIATION, &params);
// toc
@ -45,4 +45,4 @@ int main(int argc, char **argv){
//TODO write output points to file -> plot later
//save_matrix(shifted_points, iterations);
}
}

Loading…
Cancel
Save