Home
last modified time | relevance | path

Searched refs:found_locations (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/objdetect/perf/opencl/
Dperf_hogdetect.cpp79 vector<cv::Rect> found_locations; in OCL_PERF_TEST() local
85 OCL_TEST_CYCLE() hog.detectMultiScale(src, found_locations); in OCL_PERF_TEST()
87 std::sort(found_locations.begin(), found_locations.end(), RectLess()); in OCL_PERF_TEST()
88 SANITY_CHECK(found_locations, 3); in OCL_PERF_TEST()
/external/opencv3/modules/cudaobjdetect/include/opencv2/
Dcudaobjdetect.hpp167 std::vector<Point>& found_locations,
177 std::vector<Rect>& found_locations,
/external/opencv3/modules/cudaobjdetect/test/
Dtest_objdetect.cpp249 std::vector<cv::Rect> found_locations; in CUDA_TEST_P() local
250 d_hog->detectMultiScale(d_img, found_locations); in CUDA_TEST_P()
253 for (int i = 0; i < (int)found_locations.size(); i++) in CUDA_TEST_P()
255 cv::Rect r = found_locations[i]; in CUDA_TEST_P()
/external/opencv3/modules/cudaobjdetect/src/
Dhog.cpp143 std::vector<Point>& found_locations,
147 std::vector<Rect>& found_locations,
364 std::vector<Rect>& found_locations, in detectMultiScale() argument
396 found_locations.clear(); in detectMultiScale()
426 found_locations.push_back(Rect(Point2d(level_hits[j]) * scale, scaled_win_size)); in detectMultiScale()
434 … groupRectangles(found_locations, group_threshold_, 0.2/*magic number copied from CPU version*/); in detectMultiScale()
/external/opencv3/modules/objdetect/src/
Dhog.cpp1792 static bool ocl_detectMultiScale(InputArray _img, std::vector<Rect> &found_locations, std::vector<d… in ocl_detectMultiScale() argument
1826 found_locations.assign(all_candidates.begin(), all_candidates.end()); in ocl_detectMultiScale()
1827 groupRectangles(found_locations, (int)group_threshold, 0.2); in ocl_detectMultiScale()
1828 clipObjects(imgSize, found_locations, 0, 0); in ocl_detectMultiScale()