Codebase list frei0r / dfb583d
Imported Debian patch 1.1.22git20091109-1.2 Neil Williams authored 14 years ago Jonas Smedegaard committed 13 years ago
4 changed file(s) with 21 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
0 frei0r (1.1.22git20091109-1.2) unstable; urgency=low
1
2 * Non-maintainer upload.
3 * Fix "FTBFS: filter/facedetect/facedetect.c:231:36: error: too few
4 arguments to function 'cvHaarDetectObjects'" Supply minimum and
5 maximum sizes to mimic previous single size requirement.
6 (Closes: #652759)
7
8 -- Neil Williams <codehelp@debian.org> Sat, 03 Mar 2012 11:17:14 +0000
9
010 frei0r (1.1.22git20091109-1.1) unstable; urgency=low
111
212 * Non-maintainer upload.
77 Vcs-Browser: http://git.dyne.org/?r=frei0r
88 Homepage: http://www.piksel.org/frei0r
99 Build-Depends: cdbs, debhelper (>> 5.0.0), pkg-config, libcv-dev, libgavl-dev (>= 1.1.0),
10 libtool, autoconf, automake,
1011 libcvaux-dev, libhighgui-dev
1112 Standards-Version: 3.8.3
1213
55 include /usr/share/cdbs/1/rules/debhelper.mk
66 include /usr/share/cdbs/1/class/autotools.mk
77
8 clean::
9 $(RM) Makefile.in aclocal.m4 configure doc/Makefile.in
10 $(RM) doc/html/Makefile.in include/Makefile.in ltmain.sh
11 $(RM) m4/libtool.m4 m4/ltoptions.m4 m4/ltversion.m4
12 $(RM) m4/lt~obsolete.m4 m4/ltsugar.m4 src/Makefile.in
13
14 makebuilddir::
15 libtoolize -f
16 autoreconf -fs
227227 double t = (double)cvGetTickCount();
228228 faces = cvHaarDetectObjects( small_img, cascade, storage,
229229 1.1, 2, 0/*CV_HAAR_DO_CANNY_PRUNING*/,
230 cvSize(30, 30) );
230 cvSize(30, 30), cvSize(30, 30) );
231231 t = (double)cvGetTickCount() - t;
232232 //printf( "detection time = %gms\n", t/((double)cvGetTickFrequency()*1000.) );
233233