Replaced usleep with platform independent sleep function

This commit is contained in:
Matt Hill
2014-08-19 00:42:40 -04:00
parent 5612f790a0
commit 29a040d49c
5 changed files with 10 additions and 7 deletions

View File

@@ -159,7 +159,7 @@ AlprFullDetails AlprImpl::recognizeFullDetails(cv::Mat img, std::vector<cv::Rect
displayImage(config, "Main Image", img);
// Sleep 1ms
usleep(1000);
sleep_ms(1000);
}