Searched refs:hit_threshold (Results 1 – 5 of 5) sorted by relevance
/external/opencv3/samples/gpu/ |
D | hog.cpp | 42 double hit_threshold; member in Args 81 double hit_threshold; member in App 159 hit_threshold = 1.4; in Args() 181 args.hit_threshold = atof(argv[++i]); in read() 226 args.hit_threshold = args.win_width == 48 ? 1.4 : 0.; in App() 227 hit_threshold = args.hit_threshold; in App() 241 cout << "Hit threshold: " << hit_threshold << endl; in App() 320 gpu_hog->setHitThreshold(hit_threshold); in run() 329 cpu_hog.detectMultiScale(img, found, hit_threshold, win_stride, in run() 420 hit_threshold+=0.25; in handleKey() [all …]
|
/external/opencv3/samples/tapi/ |
D | hog.cpp | 53 double hit_threshold; member in App 132 hit_threshold = 1.4; in App() 141 cout << "Hit threshold: " << hit_threshold << endl; in App() 216 hog.detectMultiScale(img, found, hit_threshold, win_stride, in run() 310 hit_threshold+=0.25; in handleKey() 311 cout << "Hit threshold: " << hit_threshold << endl; in handleKey() 315 hit_threshold = max(0.0, hit_threshold - 0.25); in handleKey() 316 cout << "Hit threshold: " << hit_threshold << endl; in handleKey()
|
/external/opencv3/modules/cudaobjdetect/include/opencv2/ |
D | cudaobjdetect.hpp | 121 virtual void setHitThreshold(double hit_threshold) = 0;
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | hog.cpp | 119 virtual void setHitThreshold(double hit_threshold) { hit_threshold_ = hit_threshold; } in setHitThreshold() argument
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 1724 static bool ocl_detect(InputArray img, std::vector<Point> &hits, double hit_threshold, Size win_str… in ocl_detect() argument 1775 free_coef, (float)hit_threshold, labels, descr_size, (int)block_hist_size)) in ocl_detect() 1793 … double hit_threshold, Size win_stride, double group_threshold, in ocl_detectMultiScale() argument 1810 …if(!ocl_detect(_img, locations, hit_threshold, win_stride, oclSvmDetector, blockSize, cellSize, nb… in ocl_detectMultiScale() 1817 …if(!ocl_detect(image_scale, locations, hit_threshold, win_stride, oclSvmDetector, blockSize, cellS… in ocl_detectMultiScale()
|