Skip to content

Commit

Permalink
sdfggh
Browse files Browse the repository at this point in the history
  • Loading branch information
nenadmarkus committed Aug 21, 2013
1 parent 80546d1 commit 64673f9
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,8 @@

#include <stdio.h>

#ifdef _WIN32
#include <opencv/cv.h>
#include <opencv/highgui.h>
#else
#include <cv.h>
#include <highgui.h>
#endif

#include "n3odet.h"

Expand All @@ -38,8 +33,7 @@ int n3_find_faces(float rs[], float cs[], float ss[], float qs[], int maxndetect
#include "facefinder.array"
;

return n3_find_objects(rs, cs, ss, qs, maxndetections, facefinder, pixels, nrows, ncols, ldim, 1.1f, 0.1f, minfacesize, MIN(nrows, ncols), 1.5f, 1); // accurate
///return n3_find_objects(rs, cs, ss, qs, maxndetections, facefinder, pixels, nrows, ncols, ldim, 1.2f, 0.1f, minfacesize, MIN(nrows, ncols), 0.0f, 1); // fast
return n3_find_objects(rs, cs, ss, qs, maxndetections, facefinder, pixels, nrows, ncols, ldim, 1.2f, 0.1f, minfacesize, MIN(nrows, ncols), 1.5f, 1); // fast
}

void process_image(IplImage* frame, int draw, int print)
Expand Down

0 comments on commit 64673f9

Please sign in to comment.