Commit cf375744 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

Merge pull request #2965 from soulslicer:patch-2

parents c9c09262 6e022dcb
...@@ -93,11 +93,12 @@ static int facedetect_one_thread(bool useCPU, double scale ) ...@@ -93,11 +93,12 @@ static int facedetect_one_thread(bool useCPU, double scale )
if( image.empty() ) if( image.empty() )
{ {
capture = cvCaptureFromAVI( inputName.c_str() ); capture = cvCaptureFromAVI( inputName.c_str() );
if(!capture) if(!capture){
cout << "Capture from AVI didn't work" << endl; cout << "Capture from AVI didn't work" << endl;
return EXIT_FAILURE; return EXIT_FAILURE;
} }
} }
}
if( capture ) if( capture )
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment