HOGDescriptor::detectMultiScale in Sample (Bug #1900)
Description
Hi, to whom it may concern:
Function HOGDescriptor::detectMultiScale() seems to be clearly explained in OpenCV 2.4.0 documentation at http://opencv.itseez.com/modules/gpu/doc/object_detection.html#gpu-hogdescriptor-detectmultiscale .
Particularly,
"win_stride – Window stride. It must be a multiple of block stride.
padding – Mock parameter to keep the CPU interface compatibility. It must be (0,0)."
However, in file OpenCV-2.4.0\samples\cpp\peopledetect.cpp, line 79
" hog.detectMultiScale(img, found, 0, Size(8,8), Size(32,32), 1.05, 2);"
This seems to conflict with what's described by the documentation.
IMO, this is clearly a bug. Can anybody help to fix it?
Best Regards
Pei
History
Updated by Andrey Kamaev almost 13 years ago
- Target version deleted (
2.4.1) - Description changed from Hi, to whom it may concern: Function HOGDescriptor::detectMultiScale() s... to Hi, to whom it may concern: Function HOGDescriptor::detectMultiScale() see... More
Updated by Marina Kolpakova over 12 years ago
This sample for CPU implementation but doc that you pointed written for CUDA GPU version. Generic CPU version has no such requirements.
- Target version set to 2.4.3
- Status changed from Open to Cancelled
- Assignee changed from Vadim Pisarevsky to Marina Kolpakova