Imported Debian patch 1.1.22git20091109-1.2
Neil Williams authored 14 years ago
Jonas Smedegaard committed 13 years ago
|
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 |
|
| 0 | 10 |
frei0r (1.1.22git20091109-1.1) unstable; urgency=low
|
| 1 | 11 |
|
| 2 | 12 |
* Non-maintainer upload.
|
| 7 | 7 |
Vcs-Browser: http://git.dyne.org/?r=frei0r
|
| 8 | 8 |
Homepage: http://www.piksel.org/frei0r
|
| 9 | 9 |
Build-Depends: cdbs, debhelper (>> 5.0.0), pkg-config, libcv-dev, libgavl-dev (>= 1.1.0),
|
|
10 |
libtool, autoconf, automake,
|
| 10 | 11 |
libcvaux-dev, libhighgui-dev
|
| 11 | 12 |
Standards-Version: 3.8.3
|
| 12 | 13 |
|
| 5 | 5 |
include /usr/share/cdbs/1/rules/debhelper.mk
|
| 6 | 6 |
include /usr/share/cdbs/1/class/autotools.mk
|
| 7 | 7 |
|
|
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
|
| 227 | 227 |
double t = (double)cvGetTickCount();
|
| 228 | 228 |
faces = cvHaarDetectObjects( small_img, cascade, storage,
|
| 229 | 229 |
1.1, 2, 0/*CV_HAAR_DO_CANNY_PRUNING*/,
|
| 230 | |
cvSize(30, 30) );
|
|
230 |
cvSize(30, 30), cvSize(30, 30) );
|
| 231 | 231 |
t = (double)cvGetTickCount() - t;
|
| 232 | 232 |
//printf( "detection time = %gms\n", t/((double)cvGetTickFrequency()*1000.) );
|
| 233 | 233 |
|