Home
last modified time | relevance | path

Searched refs:hog (Results 1 – 19 of 19) sorted by relevance

/external/opencv3/modules/objdetect/test/opencl/
Dtest_hogdetector.cpp80 HOGDescriptor hog; in OCL_TEST_P() local
81 hog.gammaCorrection = true; in OCL_TEST_P()
83 hog.setSVMDetector(hog.getDefaultPeopleDetector()); in OCL_TEST_P()
88 OCL_OFF(hog.compute(img, cpu_descriptors, hog.winSize)); in OCL_TEST_P()
89 OCL_ON(hog.compute(uimg, gpu_descriptors, hog.winSize)); in OCL_TEST_P()
98 HOGDescriptor hog; in OCL_TEST_P() local
99 hog.winSize = winSize; in OCL_TEST_P()
100 hog.gammaCorrection = true; in OCL_TEST_P()
103 hog.setSVMDetector(hog.getDaimlerPeopleDetector()); in OCL_TEST_P()
105 hog.setSVMDetector(hog.getDefaultPeopleDetector()); in OCL_TEST_P()
[all …]
/external/opencv3/modules/cudaobjdetect/test/
Dtest_objdetect.cpp54 cv::Ptr<cv::cuda::HOG> hog; member
74 hog = cv::cuda::HOG::create(); in SetUp()
117 hog->setGammaCorrection(false); in testDetect()
118 hog->setSVMDetector(hog->getDefaultPeopleDetector()); in testDetect()
123 hog->detect(loadMat(img), locations); in testDetect()
134 hog->detect(loadMat(img2), locations); in testDetect()
144 hog->detect(loadMat(img2), locations); in testDetect()
188 hog->setWinStride(Size(64, 128)); in CUDA_TEST_P()
190 hog->setDescriptorFormat(cv::cuda::HOG::DESCR_FORMAT_ROW_BY_ROW); in CUDA_TEST_P()
191 hog->compute(d_img, descriptors); in CUDA_TEST_P()
[all …]
/external/opencv3/modules/objdetect/perf/opencl/
Dperf_hogdetect.cpp82 HOGDescriptor hog; in OCL_PERF_TEST() local
83 hog.setSVMDetector(hog.getDefaultPeopleDetector()); in OCL_PERF_TEST()
85 OCL_TEST_CYCLE() hog.detectMultiScale(src, found_locations); in OCL_PERF_TEST()
/external/opencv3/modules/cudaobjdetect/src/
Dhog.cpp56 namespace hog namespace
308 hog::classify_hists(win_size_.height, win_size_.width, in detect()
334 hog::compute_confidence_hists(win_size_.height, win_size_.width, in detect()
413 case CV_8UC1: hog::resize_8UC1(img, smaller_img); break; in detectMultiScale()
414 case CV_8UC4: hog::resize_8UC4(img, smaller_img); break; in detectMultiScale()
463 hog::extract_descrs_by_rows(win_size_.height, win_size_.width, in compute()
471 hog::extract_descrs_by_cols(win_size_.height, win_size_.width, in compute()
493hog::set_up_constants(nbins_, block_stride_.width, block_stride_.height, blocks_per_win.width, blo… in computeBlockHistograms()
503 hog::compute_hists(nbins_, in computeBlockHistograms()
510 hog::normalize_hists(nbins_, in computeBlockHistograms()
[all …]
/external/opencv3/samples/python2/
Dpeopledetect.py32 hog = cv2.HOGDescriptor() variable
33 hog.setSVMDetector( cv2.HOGDescriptor_getDefaultPeopleDetector() )
46 found, w = hog.detectMultiScale(img, winStride=(8,8), padding=(32,32), scale=1.05)
/external/autotest/client/site_tests/platform_CompressedSwap/src/
DMakefile5 TARGET = hog
6 SRC = hog.c
/external/opencv3/modules/objdetect/misc/java/test/
DHOGDescriptorTest.java201 HOGDescriptor hog = new HOGDescriptor(); in testHOGDescriptor() local
203 assertNotNull(hog); in testHOGDescriptor()
204 assertEquals(HOGDescriptor.DEFAULT_NLEVELS, hog.get_nlevels()); in testHOGDescriptor()
/external/autotest/client/site_tests/platform_CompressedSwapPerf/src/
DMakefile5 TARGET = hog
6 SRC = hog.c
/external/opencv3/samples/cpp/
Dtrain_HOG.cpp294 HOGDescriptor hog; in compute_hog() local
295 hog.winSize = size; in compute_hog()
305 hog.compute( gray, descriptors, Size( 8, 8 ), Size( 0, 0 ), location ); in compute_hog()
358 HOGDescriptor hog; in test_it() local
371 hog.setSVMDetector( hog.getDefaultPeopleDetector() ); in test_it()
390 hog.detectMultiScale( img, locations ); in test_it()
/external/opencv3/modules/cudaobjdetect/perf/
Dperf_objdetect.cpp87 cv::HOGDescriptor hog; variable
88 hog.setSVMDetector(d_hog->getDefaultPeopleDetector());
90 TEST_CYCLE() hog.detectMultiScale(img, cpu_found_locations);
/external/opencv3/samples/tapi/
Dhog.cpp156 HOGDescriptor hog(win_size, Size(16, 16), Size(8, 8), Size(8, 8), 9, 1, -1, in run() local
158 hog.setSVMDetector( HOGDescriptor::getDaimlerPeopleDetector() ); in run()
210 hog.nlevels = nlevels; in run()
216 hog.detectMultiScale(img, found, hit_threshold, win_stride, in run()
/external/opencv3/doc/py_tutorials/py_ml/py_svm/py_svm_opencv/
Dpy_svm_opencv.markdown42 def hog(img):
82 def hog(img):
104 hogdata = [map(hog,row) for row in deskewed]
115 hogdata = [map(hog,row) for row in deskewed]
/external/autotest/client/site_tests/platform_CompressedSwapPerf/
Dplatform_CompressedSwapPerf.py390 for hog in hogs:
391 retcode = hog.poll()
/external/opencv3/modules/objdetect/test/
Dtest_cascadeandhog.cpp512 HOGDescriptor hog; in detectMultiScale() local
514 hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector()); in detectMultiScale()
517 hog.detectMultiScale(img, objects); in detectMultiScale()
529 HOGDescriptor hog; in TEST() local
530 hog.setSVMDetector(HOGDescriptor::getDefaultPeopleDetector()); in TEST()
534 hog.write(fs, "myHOG"); in TEST()
541 ASSERT_NO_THROW(hog.read(n)); in TEST()
/external/opencv3/modules/objdetect/src/
Dhog.cpp1570 hog = _hog; in HOGInvoker()
1600 hog->detect(smallerImg, locations, hitsWeights, hitThreshold, winStride, padding); in operator ()()
1601 … Size scaledWinSize = Size(cvRound(hog->winSize.width*scale), cvRound(hog->winSize.height*scale)); in operator ()()
1625 const HOGDescriptor* hog; member in cv::HOGInvoker
3277 hog = _hog; in HOGConfInvoker()
3306hog->detectROI(smallerImg, (*locations)[i].locations, dets, (*locations)[i].confidences, hitThresh… in operator ()()
3307 … Size scaledWinSize = Size(cvRound(hog->winSize.width*scale), cvRound(hog->winSize.height*scale)); in operator ()()
3317 const HOGDescriptor* hog; member in cv::HOGConfInvoker
/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu58 namespace hog namespace
/external/opencv3/
DAndroid.mk838 modules/objdetect/src/hog.cpp \
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/
DTransliterator_Kanji_English.txt1525 彖>'[a hog]';
/external/icu/icu4j/main/shared/data/
DTransliterator_Han_Latin_Definition.txt7738 䝐 < a\-castrated\-hog;
19420 彖 < a\-hog;
21372 䝆 < hog;
41124 䝐 > a\-castrated\-hog;
51852 彖 > a\-hog;
55641 䝆 > hog;