Minor fixes

This commit is contained in:
AlexeyAB
2018-05-23 18:35:08 +03:00
parent ec68838342
commit eef9f8e5bb
5 changed files with 4 additions and 14 deletions

View File

@ -208,7 +208,7 @@ CvCapture* get_capture_video_stream(char *path) {
cap = (CvCapture*)new cv::VideoCapture(path);
}
catch (...) {
std::cout << " Error: Web-camera " << path << " can't be opened! \n";
std::cout << " Error: video-stream " << path << " can't be opened! \n";
}
return cap;
}