Home | History | Annotate | Download | only in src

Lines Matching refs:edges

762     // C++:  void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)
765 //javadoc: Canny(image, edges, threshold1, threshold2, apertureSize, L2gradient)
766 public static void Canny(Mat image, Mat edges, double threshold1, double threshold2, int apertureSize, boolean L2gradient)
769 Canny_0(image.nativeObj, edges.nativeObj, threshold1, threshold2, apertureSize, L2gradient);
774 //javadoc: Canny(image, edges, threshold1, threshold2)
775 public static void Canny(Mat image, Mat edges, double threshold1, double threshold2)
778 Canny_1(image.nativeObj, edges.nativeObj, threshold1, threshold2);
2928 // C++: void Canny(Mat image, Mat& edges, double threshold1, double threshold2, int apertureSize = 3, bool L2gradient = false)