Using usleep rather than waitkey

This commit is contained in:
Matt Hill
2014-07-02 21:04:10 -04:00
parent 7277b6b3ff
commit 5a48305471
2 changed files with 7 additions and 4 deletions

View File

@@ -146,7 +146,9 @@ AlprFullDetails AlprImpl::recognizeFullDetails(cv::Mat img)
displayImage(config, "Main Image", img);
cv::waitKey(1);
// Sleep 1ms
usleep(1000);
}