Searched defs:nonzeroRows (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/java/src/
H A Dcore.cpp3890 // void dft(Mat src, Mat& dst, int flags = 0, int nonzeroRows = 0)
3896 (JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jint flags, jint nonzeroRows)
3903 cv::dft( src, dst, (int)flags, (int)nonzeroRows );
3938 // void idft(Mat src, Mat& dst, int flags = 0, int nonzeroRows = 0)
3944 (JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jint flags, jint nonzeroRows)
3951 cv::idft( src, dst, (int)flags, (int)nonzeroRows );
3895 Java_org_opencv_core_Core_dft_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jint flags, jint nonzeroRows) argument
3943 Java_org_opencv_core_Core_idft_10(JNIEnv* env, jclass , jlong src_nativeObj, jlong dst_nativeObj, jint flags, jint nonzeroRows) argument
H A Dcore+Core.java2051 // C++: void dft(Mat src, Mat& dst, int flags = 0, int nonzeroRows = 0)
2054 //javadoc: dft(src, dst, flags, nonzeroRows)
2055 public static void dft(Mat src, Mat dst, int flags, int nonzeroRows) argument
2058 dft_0(src.nativeObj, dst.nativeObj, flags, nonzeroRows);
2074 // C++: void idft(Mat src, Mat& dst, int flags = 0, int nonzeroRows = 0)
2077 //javadoc: idft(src, dst, flags, nonzeroRows)
2078 public static void idft(Mat src, Mat dst, int flags, int nonzeroRows) argument
2081 idft_0(src.nativeObj, dst.nativeObj, flags, nonzeroRows);
2527 // C++: void dft(Mat src, Mat& dst, int flags = 0, int nonzeroRows = 0)
2528 private static native void dft_0(long src_nativeObj, long dst_nativeObj, int flags, int nonzeroRows); argument
2532 idft_0(long src_nativeObj, long dst_nativeObj, int flags, int nonzeroRows) argument
[all...]

Completed in 225 milliseconds