Searched defs:found_locations (Results 1 - 3 of 3) sorted by relevance

/external/opencv3/modules/objdetect/perf/opencl/
H A Dperf_hogdetect.cpp79 vector<cv::Rect> found_locations; local
85 OCL_TEST_CYCLE() hog.detectMultiScale(src, found_locations);
87 std::sort(found_locations.begin(), found_locations.end(), RectLess());
88 SANITY_CHECK(found_locations, 3);
/external/opencv3/modules/cudaobjdetect/test/
H A Dtest_objdetect.cpp249 std::vector<cv::Rect> found_locations; local
250 d_hog->detectMultiScale(d_img, found_locations);
253 for (int i = 0; i < (int)found_locations.size(); i++)
255 cv::Rect r = found_locations[i];
/external/opencv3/modules/objdetect/src/
H A Dhog.cpp1792 static bool ocl_detectMultiScale(InputArray _img, std::vector<Rect> &found_locations, std::vector<double>& level_scale, argument
1826 found_locations.assign(all_candidates.begin(), all_candidates.end());
1827 groupRectangles(found_locations, (int)group_threshold, 0.2);
1828 clipObjects(imgSize, found_locations, 0, 0);

Completed in 171 milliseconds