/external/opencv3/modules/objdetect/test/opencl/ |
D | test_hogdetector.cpp | 80 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/ |
D | test_objdetect.cpp | 54 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/ |
D | perf_hogdetect.cpp | 82 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/ |
D | hog.cpp | 56 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() 493 …hog::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/ |
D | peopledetect.py | 32 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/ |
D | Makefile | 5 TARGET = hog 6 SRC = hog.c
|
/external/opencv3/modules/objdetect/misc/java/test/ |
D | HOGDescriptorTest.java | 201 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/ |
D | Makefile | 5 TARGET = hog 6 SRC = hog.c
|
/external/opencv3/samples/cpp/ |
D | train_HOG.cpp | 294 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/ |
D | perf_objdetect.cpp | 87 cv::HOGDescriptor hog; variable 88 hog.setSVMDetector(d_hog->getDefaultPeopleDetector()); 90 TEST_CYCLE() hog.detectMultiScale(img, cpu_found_locations);
|
/external/opencv3/samples/tapi/ |
D | hog.cpp | 156 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/ |
D | py_svm_opencv.markdown | 42 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/ |
D | platform_CompressedSwapPerf.py | 390 for hog in hogs: 391 retcode = hog.poll()
|
/external/opencv3/modules/objdetect/test/ |
D | test_cascadeandhog.cpp | 512 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/ |
D | hog.cpp | 1570 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() 3306 …hog->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/ |
D | hog.cu | 58 namespace hog namespace
|
/external/opencv3/ |
D | Android.mk | 838 modules/objdetect/src/hog.cpp \
|
/external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/translit/resources/ |
D | Transliterator_Kanji_English.txt | 1525 彖>'[a hog]';
|
/external/icu/icu4j/main/shared/data/ |
D | Transliterator_Han_Latin_Definition.txt | 7738 䝐 < a\-castrated\-hog; 19420 彖 < a\-hog; 21372 䝆 < hog; 41124 䝐 > a\-castrated\-hog; 51852 彖 > a\-hog; 55641 䝆 > hog;
|