/external/opencv3/modules/cudaimgproc/src/ |
D | canny.cpp | 54 namespace canny namespace 153 …canny::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() 221 …canny::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() 225 …canny::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/ |
D | canny.cu | 54 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/ |
D | perf_canny.cpp | 74 …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/ |
D | cvsegment.cpp | 484 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/ |
D | test_canny.cpp | 84 …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/ |
D | opencl_kernels_imgproc.cpp | 470 const struct ProgramEntry canny={"canny", variable 782 ProgramSource canny_oclsrc(canny.programStr);
|
D | opencl_kernels_imgproc.hpp | 24 extern const struct ProgramEntry canny;
|
/external/opencv3/modules/imgproc/perf/ |
D | perf_canny.cpp | 12 PERF_TEST_P(Img_Aperture_L2_thresholds, canny,
|
/external/opencv3/doc/py_tutorials/py_imgproc/py_contours/py_contours_begin/ |
D | py_contours_begin.markdown | 18 - For better accuracy, use binary images. So before finding contours, apply threshold or canny
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 1079 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/ |
D | py_houghlines.markdown | 67 Input image should be a binary image, so apply threshold or use canny edge detection before finding
|
/external/opencv3/modules/imgproc/src/ |
D | canny.cpp | 609 …if (tegra::useTegra() && tegra::canny(src, dst, low_thresh, high_thresh, aperture_size, L2gradient… in Canny()
|
/external/opencv3/ |
D | Android.mk | 701 modules/imgproc/src/canny.cpp \
|