1
0
mirror of https://github.com/opencv/opencv_contrib.git synced 2025-10-20 21:40:49 +08:00

Move objdetect HaarCascadeClassifier and HOGDescriptor to contrib xobjdetect (#3692)

* Move objdetect parts to contrib

* Move objdetect parts to contrib

* Fix errors from CI build.

* Minor fixes.
This commit is contained in:
WU Jia
2024-03-22 04:40:54 +08:00
committed by GitHub
parent 8f3a61b83c
commit 3f609aa21c
150 changed files with 758909 additions and 77 deletions

View File

@@ -48,7 +48,7 @@
#endif
#include "opencv2/core/cuda.hpp"
#include "opencv2/objdetect.hpp"
#include "opencv2/xobjdetect.hpp"
/**
@addtogroup cuda
@@ -70,11 +70,11 @@ namespace cv { namespace cuda {
@note
- An example applying the HOG descriptor for people detection can be found at
opencv_source_code/samples/cpp/peopledetect.cpp
xobjdetect_module/samples/peopledetect.cpp
- A CUDA example applying the HOG descriptor for people detection can be found at
opencv_source_code/samples/gpu/hog.cpp
xobjdetect_module/samples/gpu/hog.cpp
- (Python) An example applying the HOG descriptor for people detection can be found at
opencv_source_code/samples/python/peopledetect.py
xobjdetect_module/samples/python/peopledetect.py
*/
class CV_EXPORTS_W HOG : public Algorithm
{
@@ -222,8 +222,8 @@ public:
/** @brief Cascade classifier class used for object detection. Supports HAAR and LBP cascades. :
@note
- A cascade classifier example can be found at
opencv_source_code/samples/gpu/cascadeclassifier.cpp
- A cascade classifier example can be found at
xobjdetect_module/samples/gpu/cascadeclassifier.cpp
- A Nvidea API specific cascade classifier example can be found at
opencv_source_code/samples/gpu/cascadeclassifier_nvidia_api.cpp
*/