cvHaarDetectObjects now fails to compile where it worked for several years. (Bug #718)
Description
This line has worked for many years in my cvlib_mex Matlab MEX wrapper.
faces = cvHaarDetectObjects( src_img, cascade, storage,
scale_factor, min_neighbors, 0,
cvSize(min_size, min_size) );
Now, I'm getting this error message
cvlib_mex.c(1403) : error C2198: 'cvHaarDetectObjects' : too few arguments for call
Which is not true according to the pass and current documentation.
Associated revisions
Merge pull request #718 from apavlenko:java_tests_fix
History
Updated by Vadim Pisarevsky over 14 years ago
sorry, we forgot to update documentation. It's done now (in SVN). We added another parameter to the function maxSize, which you may set to cvSize(0,0). It regulates the maximum size of the face that the function detects. When the parameter is cvSize(0,0), the maximum size is set to the image size.
- Status changed from Open to Done
- (deleted custom field) set to wontfix