[vlc-commits] Revert "OpenCV Example: define a default parameter, since we are not C++"
Jean-Baptiste Kempf
git at videolan.org
Mon Aug 13 17:54:17 CEST 2012
vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Mon Aug 13 17:35:58 2012 +0200| [039902ede731db5c5fea2e28d79e1912cbcc1184] | committer: Jean-Baptiste Kempf
Revert "OpenCV Example: define a default parameter, since we are not C++"
This reverts commit 8ffa5c9fe5ac3fccabfdf9324f28ed654130f73d.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=039902ede731db5c5fea2e28d79e1912cbcc1184
---
modules/video_filter/opencv_example.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/video_filter/opencv_example.c b/modules/video_filter/opencv_example.c
index d9cefbc..bec3997 100644
--- a/modules/video_filter/opencv_example.c
+++ b/modules/video_filter/opencv_example.c
@@ -172,7 +172,7 @@ static picture_t *Filter( filter_t *p_filter, picture_t *p_pic )
CvSeq *faces = cvHaarDetectObjects( p_img[0], p_sys->p_cascade,
p_sys->p_storage, 1.15, 5,
CV_HAAR_DO_CANNY_PRUNING,
- cvSize(20, 20), cvSize(0,0) );
+ cvSize(20, 20) );
//create the video_filter_region_info_t struct
if (faces && (faces->total > 0))
{
More information about the vlc-commits
mailing list