Home
last modified time | relevance | path

Searched refs:detect (Results 1 – 25 of 519) sorted by relevance

12345678910>>...21

/external/opencv3/modules/imgproc/test/
Dtest_lsd.cpp114 detector->detect(test_image, lines); in TEST_F()
127 detector->detect(test_image, lines); in TEST_F()
141 detector->detect(test_image, lines); in TEST_F()
154 detector->detect(test_image, lines); in TEST_F()
167 detector->detect(test_image, lines); in TEST_F()
180 detector->detect(test_image, lines); in TEST_F()
194 detector->detect(test_image, lines); in TEST_F()
207 detector->detect(test_image, lines); in TEST_F()
220 detector->detect(test_image, lines); in TEST_F()
233 detector->detect(test_image, lines); in TEST_F()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
DTestCharsetDetector.java156 m = det.detect(); in TestInputFilter()
164 m = det.detect(); in TestInputFilter()
206 m = det.detect(); in TestUTF16()
213 m = det.detect(); in TestUTF16()
241 m = det.detect(); in TestC1Bytes()
249 m = det.detect(); in TestC1Bytes()
275 m = det.detect(); in TestShortInput()
311 match = det.detect(); in TestBufferOverflow()
428 CharsetMatch m = det.detect(); in checkMatch()
522 m = det.detect(); in TestJapanese()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/charsetdet/
DTestCharsetDetector.java152 m = det.detect(); in TestInputFilter()
160 m = det.detect(); in TestInputFilter()
202 m = det.detect(); in TestUTF16()
209 m = det.detect(); in TestUTF16()
237 m = det.detect(); in TestC1Bytes()
245 m = det.detect(); in TestC1Bytes()
271 m = det.detect(); in TestShortInput()
307 match = det.detect(); in TestBufferOverflow()
424 CharsetMatch m = det.detect(); in checkMatch()
518 m = det.detect(); in TestJapanese()
[all …]
/external/opencv3/modules/features2d/misc/java/test/
DFASTFeatureDetectorTest.java59 detector.detect(img, keypoints); in testDetectMatListOfKeyPoint()
73 detector.detect(img, keypoints, mask); in testDetectMatListOfKeyPointMat()
90 detector.detect(grayChess, keypoints1); in testRead()
97 detector.detect(grayChess, keypoints2); in testRead()
111 detector.detect(grayChess, keypoints1); in testReadYml()
119 detector.detect(grayChess, keypoints2); in testReadYml()
DSURFFeatureDetectorTest.java83 detector.detect(crosses, keypoints); in testDetectListOfMatListOfListOfKeyPoint()
106 detector.detect(cross, keypoints); in testDetectMatListOfKeyPoint()
122 detector.detect(img, keypoints, mask); in testDetectMatListOfKeyPointMat()
137 detector.detect(cross, keypoints1); in testRead()
144 detector.detect(cross, keypoints2); in testRead()
DSTARFeatureDetectorTest.java78 detector.detect(img, keypoints); in testDetectMatListOfKeyPoint()
88 detector.detect(img, keypoints, mask); in testDetectMatListOfKeyPointMat()
101 detector.detect(img, keypoints1); in testRead()
108 detector.detect(img, keypoints2); in testRead()
/external/webrtc/webrtc/base/
Dproxy_unittest.cc61 AutoDetectProxyRunner* detect = new AutoDetectProxyRunner("unittest/1.0"); in DetectProxyType() local
62 detect->set_proxy(address); in DetectProxyType()
63 detect->Run(); // blocks until done in DetectProxyType()
64 type = detect->proxy().type; in DetectProxyType()
65 detect->Destroy(false); in DetectProxyType()
/external/opencv3/doc/tutorials/features2d/
Dtable_of_content_features2d.markdown13 Why is it a good idea to track corners? We learn to use the Harris method to detect
22 Where we use an improved method to detect corners more accuratelyI
46 In this tutorial, you will use *features2d* to detect interest points.
70 In this tutorial, you will use *features2d* and *calib3d* to detect an object in a scene.
/external/opencv3/samples/python2/
Dfacedetect.py14 def detect(img, cascade): function
49 rects = detect(gray, cascade)
56 subrects = detect(roi.copy(), nested)
/external/opencv3/modules/cudaimgproc/include/opencv2/
Dcudaimgproc.hpp288 virtual void detect(InputArray image, OutputArray edges, Stream& stream = Stream::Null()) = 0;
295 …virtual void detect(InputArray dx, InputArray dy, OutputArray edges, Stream& stream = Stream::Null…
346 virtual void detect(InputArray src, OutputArray lines, Stream& stream = Stream::Null()) = 0;
403 virtual void detect(InputArray src, OutputArray lines, Stream& stream = Stream::Null()) = 0;
448 virtual void detect(InputArray src, OutputArray circles, Stream& stream = Stream::Null()) = 0;
565 …virtual void detect(InputArray image, OutputArray corners, InputArray mask = noArray(), Stream& st…
/external/opencv3/modules/features2d/perf/
Dperf_orb.cpp15 PERF_TEST_P(orb, detect, testing::Values(ORB_IMAGES)) in PERF_TEST_P() argument
28 TEST_CYCLE() detector->detect(frame, points, mask); in PERF_TEST_P()
47 detector->detect(frame, points, mask); in PERF_TEST_P()
Dperf_fast.cpp19 PERF_TEST_P(fast, detect, testing::Combine( in PERF_TEST_P() argument
37 TEST_CYCLE() fd->detect(frame, points); in PERF_TEST_P()
Dperf_agast.cpp21 PERF_TEST_P(agast, detect, testing::Combine( in PERF_TEST_P() argument
39 TEST_CYCLE() fd->detect(frame, points); in PERF_TEST_P()
/external/opencv3/modules/features2d/src/
Dfeature2d.cpp59 void Feature2D::detect( InputArray image, in detect() function in cv::Feature2D
72 void Feature2D::detect( InputArrayOfArrays _images, in detect() function in cv::Feature2D
91 detect(images[i], keypoints[i], masks.empty() ? Mat() : masks[i] ); in detect()
/external/opencv3/modules/java/src/
Dfeatures2d+FeatureDetector.java84 public void detect(Mat image, MatOfKeyPoint keypoints, Mat mask) in detect() method in FeatureDetector
93 public void detect(Mat image, MatOfKeyPoint keypoints) in detect() method in FeatureDetector
107 public void detect(List<Mat> images, List<MatOfKeyPoint> keypoints, List<Mat> masks) in detect() method in FeatureDetector
119 public void detect(List<Mat> images, List<MatOfKeyPoint> keypoints) in detect() method in FeatureDetector
/external/opencv3/modules/cudaimgproc/perf/
Dperf_hough.cpp109 TEST_CYCLE() hough->detect(d_src, d_lines); in PERF_TEST_P()
158 TEST_CYCLE() hough->detect(d_mask, d_lines);
209 TEST_CYCLE() houghCircles->detect(d_src, d_circles);
260 TEST_CYCLE() alg->detect(d_edges, d_dx, d_dy, positions); in PERF_TEST_P()
272 TEST_CYCLE() alg->detect(edges, dx, dy, positions); in PERF_TEST_P()
331 TEST_CYCLE() alg->detect(d_edges, d_dx, d_dy, positions); in PERF_TEST_P()
343 TEST_CYCLE() alg->detect(edges, dx, dy, positions); in PERF_TEST_P()
/external/opencv3/doc/tutorials/imgproc/
Dtable_of_content_imgproc.markdown76 Where we learn how to calculate gradients and use them to detect edges!
84 Where we learn about the *Laplace* operator and how to detect edges with it.
92 Where we learn a sophisticated alternative to detect edges.
100 Where we learn how to detect lines
108 Where we learn how to detect circles
/external/opencv3/doc/tutorials/features2d/feature_detection/
Dfeature_detection.markdown10 - Use the cv::xfeatures2d::SURF and its function cv::xfeatures2d::SURF::detect to perform the
53 detector->detect( img_1, keypoints_1 );
54 detector->detect( img_2, keypoints_2 );
/external/libvpx/libvpx/
Dtools_common.c83 struct FileTypeDetectionBuffer *detect = &input_ctx->detect; in read_yuv_frame() local
114 const size_t left = detect->buf_read - detect->position; in read_yuv_frame()
117 memcpy(ptr, detect->buf + detect->position, more); in read_yuv_frame()
120 detect->position += more; in read_yuv_frame()
Divfdec.c65 input_ctx->detect.buf_read = 0; in file_is_ivf()
67 input_ctx->detect.position = 4; in file_is_ivf()
/external/compiler-rt/lib/asan/
Dasan_flags.inc23 "Size (in Mb) of quarantine used to detect use-after-free "
36 "Controls the way to handle globals (0 - don't detect buffer overflow on "
37 "globals, 1 - detect buffer overflow, 2 - print data about registered "
121 "If non-zero, try to detect operations like <, <=, >, >= and - on "
129 "If >=2, detect violation of One-Definition-Rule (ODR); "
130 "If ==1, detect ODR-violation only if the two variables "
/external/opencv3/modules/features2d/test/
Dtest_brisk.cpp79 detector->detect(image1, keypoints1); in run()
80 detector->detect(image2, keypoints2); in run()
/external/opencv3/modules/cudaimgproc/src/
Dcanny.cpp79 void detect(InputArray image, OutputArray edges, Stream& stream);
80 void detect(InputArray dx, InputArray dy, OutputArray edges, Stream& stream);
131 void CannyImpl::detect(InputArray _image, OutputArray _edges, Stream& stream) in detect() function in __anond5a576490111::CannyImpl
170 void CannyImpl::detect(InputArray _dx, InputArray _dy, OutputArray _edges, Stream& stream) in detect() function in __anond5a576490111::CannyImpl
/external/pdfium/xfa/src/fxbarcode/pdf417/
DBC_PDF417Detector.h17 static CBC_PDF417DetectorResult* detect(CBC_BinaryBitmap* image,
39 static CFX_PtrArray* detect(FX_BOOL multiple, CBC_CommonBitMatrix* bitMatrix);
/external/llvm/test/tools/dsymutil/ARM/
Dfat-arch-name.test4 # We detect thumb triples from the binaries, because those are the only ones
6 # we would detect armv7m-apple-darwin as non-thumb triple, but you can't

12345678910>>...21