Searched defs:HOG (Results 1 - 4 of 4) sorted by relevance

/external/opencv3/modules/cudaobjdetect/include/opencv2/
H A Dcudaobjdetect.hpp65 // HOG (Histogram-of-Oriented-Gradients) Descriptor and Object Detector
71 - An example applying the HOG descriptor for people detection can be found at
73 - A CUDA example applying the HOG descriptor for people detection can be found at
75 - (Python) An example applying the HOG descriptor for people detection can be found at
78 class CV_EXPORTS HOG : public Algorithm class in namespace:cv::cuda
87 /** @brief Creates the HOG descriptor and detector.
95 static Ptr<HOG> create(Size win_size = Size(64, 128),
/external/opencv3/apps/traincascade/
H A Dtraincascade_features.h65 enum { HAAR = 0, LBP = 1, HOG = 2 }; enumerator in enum:CvFeatureParams::__anon15496
72 int featSize; // 1 in case of simple features (HAAR, LBP) and N_BINS(9)*N_CELLS(4) in case of Dalal's HOG features
/external/opencv3/modules/cudaobjdetect/test/
H A Dtest_objdetect.cpp51 struct HOG : testing::TestWithParam<cv::cuda::DeviceInfo> struct in inherits:testing::TestWithParam
54 cv::Ptr<cv::cuda::HOG> hog;
74 hog = cv::cuda::HOG::create();
155 CUDA_TEST_P(HOG, DISABLED_Detect)
173 CUDA_TEST_P(HOG, GetDescriptors)
190 hog->setDescriptorFormat(cv::cuda::HOG::DESCR_FORMAT_ROW_BY_ROW);
193 hog->setDescriptorFormat(cv::cuda::HOG::DESCR_FORMAT_COL_BY_COL);
221 INSTANTIATE_TEST_CASE_P(CUDA_ObjDetect, HOG, ALL_DEVICES);
240 CUDA_TEST_P(CalTech, HOG)
245 cv::Ptr<cv::cuda::HOG> d_ho
[all...]
/external/opencv3/modules/objdetect/src/
H A Dcascadedetect.hpp19 HOG = 2 enumerator in enum:cv::FeatureEvaluator::__anon16090
271 #define CC_HOG "HOG"

Completed in 215 milliseconds