Sleep for 1ms, rather than 1 second

This commit is contained in:
Matt Hill
2014-08-28 08:57:54 -04:00
parent 34e00793eb
commit 7a3cb53aa6

View File

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