L2gradient        306 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp     virtual void setL2Gradient(bool L2gradient) = 0;
L2gradient        320 modules/cudaimgproc/include/opencv2/cudaimgproc.hpp CV_EXPORTS Ptr<CannyEdgeDetector> createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size = 3, bool L2gradient = false);
L2gradient         73 modules/cudaimgproc/src/canny.cpp         CannyImpl(double low_thresh, double high_thresh, int apperture_size, bool L2gradient) :
L2gradient         74 modules/cudaimgproc/src/canny.cpp             low_thresh_(low_thresh), high_thresh_(high_thresh), apperture_size_(apperture_size), L2gradient_(L2gradient)
L2gradient         91 modules/cudaimgproc/src/canny.cpp         void setL2Gradient(bool L2gradient) { L2gradient_ = L2gradient; }
L2gradient        231 modules/cudaimgproc/src/canny.cpp Ptr<CannyEdgeDetector> cv::cuda::createCannyEdgeDetector(double low_thresh, double high_thresh, int apperture_size, bool L2gradient)
L2gradient        233 modules/cudaimgproc/src/canny.cpp     return makePtr<CannyImpl>(low_thresh, high_thresh, apperture_size, L2gradient);
L2gradient         55 modules/cudaimgproc/test/test_canny.cpp     IMPLEMENT_PARAM_CLASS(L2gradient, bool)
L2gradient         58 modules/cudaimgproc/test/test_canny.cpp PARAM_TEST_CASE(Canny, cv::cuda::DeviceInfo, AppertureSize, L2gradient, UseRoi)
L2gradient         98 modules/cudaimgproc/test/test_canny.cpp     testing::Values(L2gradient(false), L2gradient(true)),
L2gradient       1457 modules/imgproc/include/opencv2/imgproc.hpp                          int apertureSize = 3, bool L2gradient = false );
L2gradient         99 modules/imgproc/src/canny.cpp                       int aperture_size, bool L2gradient, int cn, const Size & size)
L2gradient        119 modules/imgproc/src/canny.cpp     if (L2gradient)
L2gradient        147 modules/imgproc/src/canny.cpp                                       L2gradient ? " -D L2GRAD" : ""));
L2gradient        177 modules/imgproc/src/canny.cpp                                            cn, lSizeX, lSizeY, L2gradient ? " -D L2GRAD" : ""));
L2gradient        354 modules/imgproc/src/canny.cpp             if (!L2gradient)
L2gradient        573 modules/imgproc/src/canny.cpp     bool L2gradient;
L2gradient        582 modules/imgproc/src/canny.cpp                 int aperture_size, bool L2gradient )
L2gradient        590 modules/imgproc/src/canny.cpp     if (!L2gradient && (aperture_size & CV_CANNY_L2_GRADIENT) == CV_CANNY_L2_GRADIENT)
L2gradient        594 modules/imgproc/src/canny.cpp         L2gradient = true;
L2gradient        604 modules/imgproc/src/canny.cpp                ocl_Canny(_src, _dst, (float)low_thresh, (float)high_thresh, aperture_size, L2gradient, cn, size))
L2gradient        609 modules/imgproc/src/canny.cpp     if (tegra::useTegra() && tegra::canny(src, dst, low_thresh, high_thresh, aperture_size, L2gradient))
L2gradient        616 modules/imgproc/src/canny.cpp         if( aperture_size == 3 && !L2gradient && 1 == cn )
L2gradient        630 modules/imgproc/src/canny.cpp if (L2gradient)
L2gradient        666 modules/imgproc/src/canny.cpp         g.run(tbbCanny(Range(i * grainSize, (i + 1) * grainSize), src, map, low, high, aperture_size, L2gradient));
L2gradient        668 modules/imgproc/src/canny.cpp         g.run(tbbCanny(Range(i * grainSize, src.rows), src, map, low, high, aperture_size, L2gradient));
L2gradient        697 modules/imgproc/src/canny.cpp     if (L2gradient)
L2gradient        758 modules/imgproc/src/canny.cpp             if (!L2gradient)
L2gradient         58 modules/imgproc/test/ocl/test_canny.cpp IMPLEMENT_PARAM_CLASS(L2gradient, bool)
L2gradient         61 modules/imgproc/test/ocl/test_canny.cpp PARAM_TEST_CASE(Canny, Channels, AppertureSize, L2gradient, UseRoi)
L2gradient        118 modules/imgproc/test/ocl/test_canny.cpp                                 testing::Values(L2gradient(false), L2gradient(true)),