Home
last modified time | relevance | path

Searched refs:canny (Results 1 – 13 of 13) sorted by relevance

/external/opencv3/modules/cudaimgproc/src/
Dcanny.cpp54 namespace canny namespace
153canny::calcMagnitude(srcWhole, ofs.x, ofs.y, dx_, dy_, mag_, L2gradient_, StreamAccessor::getStrea… in detect()
163 canny::calcMagnitude(dx_, dy_, mag_, L2gradient_, StreamAccessor::getStream(stream)); in detect()
190 canny::calcMagnitude(dx_, dy_, mag_, L2gradient_, StreamAccessor::getStream(stream)); in detect()
221canny::calcMap(dx_, dy_, mag_, map_, static_cast<float>(low_thresh_), static_cast<float>(high_thre… in CannyCaller()
223 canny::edgesHysteresisLocal(map_, st1_.ptr<short2>(), StreamAccessor::getStream(stream)); in CannyCaller()
225canny::edgesHysteresisGlobal(map_, st1_.ptr<short2>(), st2_.ptr<short2>(), StreamAccessor::getStre… in CannyCaller()
227 canny::getEdges(map_, edges, StreamAccessor::getStream(stream)); in CannyCaller()
/external/opencv3/modules/cudaimgproc/src/cuda/
Dcanny.cu54 namespace canny namespace
80 template <> struct TransformFunctorTraits<canny::L1> : DefaultTransformFunctorTraits<canny::L1>
84 template <> struct TransformFunctorTraits<canny::L2> : DefaultTransformFunctorTraits<canny::L2>
90 namespace canny namespace
165 namespace canny namespace
238 namespace canny namespace
353 namespace canny namespace
450 cudaSafeCall( cudaGetSymbolAddress(&counter_ptr, canny::counter) ); in edgesHysteresisGlobal()
484 namespace canny namespace
500 …template <> struct TransformFunctorTraits<canny::GetEdges> : DefaultTransformFunctorTraits<canny::…
[all …]
/external/opencv3/modules/cudaimgproc/perf/
Dperf_canny.cpp74 …cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_th… variable
76 TEST_CYCLE() canny->detect(d_image, dst);
/external/opencv/cvaux/src/
Dcvsegment.cpp484 CvMat* canny = 0; in cvSegmentImage() local
506 CV_CALL( canny = cvCreateMat( size.height, size.width, CV_8UC1 )); in cvSegmentImage()
512 cvCanny( gray, canny, 0/*canny_threshold*0.4*/, canny_threshold, 3 ); in cvSegmentImage()
513 cvThreshold( canny, canny, 1, 1, CV_THRESH_BINARY ); in cvSegmentImage()
521 mask = canny; // a new name for new role in cvSegmentImage()
579 cvReleaseMat( &canny ); in cvSegmentImage()
/external/opencv3/modules/cudaimgproc/test/
Dtest_canny.cpp84 …cv::Ptr<cv::cuda::CannyEdgeDetector> canny = cv::cuda::createCannyEdgeDetector(low_thresh, high_th… in CUDA_TEST_P() local
87 canny->detect(loadMat(img, useRoi), edges); in CUDA_TEST_P()
/external/opencv3/modules/imgproc/
Dopencl_kernels_imgproc.cpp470 const struct ProgramEntry canny={"canny", variable
782 ProgramSource canny_oclsrc(canny.programStr);
Dopencl_kernels_imgproc.hpp24 extern const struct ProgramEntry canny;
/external/opencv3/modules/imgproc/perf/
Dperf_canny.cpp12 PERF_TEST_P(Img_Aperture_L2_thresholds, canny,
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_begin/
Dpy_contours_begin.markdown18 - For better accuracy, use binary images. So before finding contours, apply threshold or canny
/external/opencv3/samples/gpu/performance/
Dtests.cpp1079 Ptr<cuda::CannyEdgeDetector> canny = cuda::createCannyEdgeDetector(50.0, 100.0); in TEST() local
1081 canny->detect(d_img, d_edges); in TEST()
1084 canny->detect(d_img, d_edges); in TEST()
/external/opencv3/doc/py_tutorials/py_imgproc/py_houghlines/
Dpy_houghlines.markdown67 Input image should be a binary image, so apply threshold or use canny edge detection before finding
/external/opencv3/modules/imgproc/src/
Dcanny.cpp609 …if (tegra::useTegra() && tegra::canny(src, dst, low_thresh, high_thresh, aperture_size, L2gradient… in Canny()
/external/opencv3/
DAndroid.mk701 modules/imgproc/src/canny.cpp \