1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-19 02:16:34 +08:00
This commit is contained in:
Alex Leontiev
2014-08-11 20:22:07 +03:00
parent f05f8cfcf2
commit 2328bc23e8
2 changed files with 12 additions and 12 deletions

View File

@@ -7,9 +7,9 @@
#include <cstring>
#include <climits>
#define CMDLINEMAX 30
#define ASSESS_TILL 100
#define LINEMAX 40
const int CMDLINEMAX = 30;
const int ASSESS_TILL = 100;
const int LINEMAX = 40;
using namespace std;
using namespace cv;
@@ -368,7 +368,7 @@ int main( int argc, char** argv ){
for(int i=0;i<vcount;i++){
results.push_back(assessment(videos[i],gts[i],algorithms,((char**)initBoxes)+i,acount));
}
CV_Assert(results[0].results[0].size()<CMDLINEMAX);
CV_Assert( (int)results[0].results[0].size() < CMDLINEMAX );
printf("\n\n");
char buf[CMDLINEMAX*CMDLINEMAX*LINEMAX], buf2[CMDLINEMAX*40];