Use usleep rather than waitKey

This commit is contained in:
Matt Hill
2014-07-02 21:00:59 -04:00
parent 4eb4cc2dd3
commit 969109ac9d

View File

@@ -128,10 +128,10 @@ void imageCollectionThread(void* arg)
// Delay 15ms
cv::waitKey(15);
usleep(15000);
}
// Delay 100ms
cv::waitKey(100);
usleep(100000);
}
}