opencv/modules/gpu/perf_cpu/perf_objdetect.cpp

23 lines
483 B
C++
Raw Normal View History

2012-05-22 18:29:58 +08:00
#include "perf_cpu_precomp.hpp"
#ifdef HAVE_CUDA
GPU_PERF_TEST_1(HOG, cv::gpu::DeviceInfo)
{
2012-05-22 18:29:58 +08:00
cv::Mat img = readImage("gpu/hog/road.png", cv::IMREAD_GRAYSCALE);
std::vector<cv::Rect> found_locations;
2012-05-22 18:29:58 +08:00
cv::HOGDescriptor hog;
hog.setSVMDetector(cv::gpu::HOGDescriptor::getDefaultPeopleDetector());
TEST_CYCLE()
{
hog.detectMultiScale(img, found_locations);
}
}
INSTANTIATE_TEST_CASE_P(ObjDetect, HOG, ALL_DEVICES);
#endif