| 349 | |
| 350 | |
| 351 | double get_wall_time() { |
| 352 | struct timeval time; |
| 353 | if (gettimeofday(&time,NULL)) { |
| 354 | // Handle error |
| 355 | return 0; |
| 356 | } |
| 357 | return (double)time.tv_sec + (double)time.tv_usec * 1e-6; |
| 358 | //return (double)time.tv_usec; |
| 359 | } |
| 360 | |
| 361 | double medianBetweenValidPoints(const cv::Mat& Input){ |
| 362 | std::vector<ushort> array; |
no outgoing calls
no test coverage detected