Skip to content
Snippets Groups Projects
Commit 415d967e authored by Thomas Boy's avatar Thomas Boy
Browse files

fix

parent 4f5e7f93
No related branches found
No related tags found
No related merge requests found
......@@ -327,8 +327,9 @@ int main(int argc, char * argv[])
vector<string> myFileListAfterContourSelection; //list for no contours found after selection;
vector<string> myFileListCorrupted; //list all corrupted jpg files
for(frameCounter=0;frameCounter<amountFiles||g_badSignalFlagAbort;frameCounter++)
for(frameCounter=0;frameCounter<amountFiles;frameCounter++)
{
//measure time consumption
clock_t begin = clock();
......@@ -623,6 +624,8 @@ int main(int argc, char * argv[])
double elapsedSecTotal = double(endAll - beginAll) / CLOCKS_PER_SEC;
cout <<"process single pic:\t"<<elapsedSecs<<" s - \t\t"<<(int)(elapsedSecTotal/60)<<" min -\t"<<(int)(elapsedSecTotal/60/60)<<" h"<<endl;
if(g_badSignalFlagAbort)
frameCounter = amountFiles; //we abort
}
//finishing time
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment