Opencv裡面的Canny定義有兩種?分別為Canny_0,Canny_1,請問如何在Eclipse裡面查看Canny_0()與Canny_1() 的源代碼?
代碼如下:
private static native void Canny_0(long image_nativeObj, long edges_nativeObj, double threshold1, double threshold2, int apertureSize, boolean L2gradient);
private static native void Canny_1(long image_nativeObj, long edges_nativeObj, double threshold1, double threshold2);
opencv\sources\modules是源代碼文件,或者直接在文檔中查看每個參數的說明