|  | @ -21,7 +21,7 @@ int main(int argc, char **argv){ | 
			
		
	
		
		
			
				
					|  |  |     char *labels; |  |  |     char *labels; | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     params.epsilon = 0.0001; |  |  |     params.epsilon = 0.0001; | 
			
		
	
		
		
			
				
					
					|  |  |     params.verbose = true; |  |  |     params.verbose = false; | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |     params.display = true; |  |  |     params.display = true; | 
			
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     //get_args(argc, argv, ¶ms); //commented out while in development |  |  |     //get_args(argc, argv, ¶ms); //commented out while in development | 
			
		
	
	
		
		
			
				
					|  | @ -38,10 +38,10 @@ int main(int argc, char **argv){ | 
			
		
	
		
		
			
				
					|  |  |     gettimeofday (&endwtime, NULL); |  |  |     gettimeofday (&endwtime, NULL); | 
			
		
	
		
		
			
				
					|  |  |     seq_time = (double)((endwtime.tv_usec - startwtime.tv_usec)/1.0e6 + endwtime.tv_sec - startwtime.tv_sec); |  |  |     seq_time = (double)((endwtime.tv_usec - startwtime.tv_usec)/1.0e6 + endwtime.tv_sec - startwtime.tv_sec); | 
			
		
	
		
		
			
				
					|  |  |      |  |  |      | 
			
		
	
		
		
			
				
					
					|  |  |     if (params.verbose){ |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  |     printf("\nTotal number of iterations = %d\n", iterations); |  |  |     printf("\nTotal number of iterations = %d\n", iterations); | 
			
		
	
		
		
			
				
					|  |  |     printf("%s wall clock time = %f\n","Mean Shift", seq_time); |  |  |     printf("%s wall clock time = %f\n","Mean Shift", seq_time); | 
			
		
	
		
		
			
				
					
					|  |  |     } |  |  | 
 | 
			
				
				
			
		
	
		
		
	
		
		
			
				
					|  |  | 
 |  |  | 
 | 
			
		
	
		
		
			
				
					|  |  |     //TODO write output points to file -> plot later |  |  |     //TODO write output points to file -> plot later | 
			
		
	
		
		
			
				
					|  |  |     //save_matrix(shifted_points, iterations); |  |  |     //save_matrix(shifted_points, iterations); | 
			
		
	
	
		
		
			
				
					|  | 
 |