// // This file is auto-generated. Please don't modify it! // package org.opencv.features2d; // C++: class FastFeatureDetector /** * Wrapping class for feature detection using the FAST method. : */ public class FastFeatureDetector extends Feature2D { protected FastFeatureDetector(long addr) { super(addr); } // internal usage only public static FastFeatureDetector __fromPtr__(long addr) { return new FastFeatureDetector(addr); } // C++: enum <unnamed> public static final int THRESHOLD = 10000, NONMAX_SUPPRESSION = 10001, FAST_N = 10002; // C++: enum DetectorType (cv.FastFeatureDetector.DetectorType) public static final int TYPE_5_8 = 0, TYPE_7_12 = 1, TYPE_9_16 = 2; // // C++: static Ptr_FastFeatureDetector cv::FastFeatureDetector::create(int threshold = 10, bool nonmaxSuppression = true, FastFeatureDetector_DetectorType type = FastFeatureDetector::TYPE_9_16) // public static FastFeatureDetector create(int threshold, boolean nonmaxSuppression, int type) { return FastFeatureDetector.__fromPtr__(create_0(threshold, nonmaxSuppression, type)); } public static FastFeatureDetector create(int threshold, boolean nonmaxSuppression) { return FastFeatureDetector.__fromPtr__(create_1(threshold, nonmaxSuppression)); } public static FastFeatureDetector create(int threshold) { return FastFeatureDetector.__fromPtr__(create_2(threshold)); } public static FastFeatureDetector create() { return FastFeatureDetector.__fromPtr__(create_3()); } // // C++: void cv::FastFeatureDetector::setThreshold(int threshold) // public void setThreshold(int threshold) { setThreshold_0(nativeObj, threshold); } // // C++: int cv::FastFeatureDetector::getThreshold() // public int getThreshold() { return getThreshold_0(nativeObj); } // // C++: void cv::FastFeatureDetector::setNonmaxSuppression(bool f) // public void setNonmaxSuppression(boolean f) { setNonmaxSuppression_0(nativeObj, f); } // // C++: bool cv::FastFeatureDetector::getNonmaxSuppression() // public boolean getNonmaxSuppression() { return getNonmaxSuppression_0(nativeObj); } // // C++: void cv::FastFeatureDetector::setType(FastFeatureDetector_DetectorType type) // public void setType(int type) { setType_0(nativeObj, type); } // // C++: FastFeatureDetector_DetectorType cv::FastFeatureDetector::getType() // public int getType() { return getType_0(nativeObj); } // // C++: String cv::FastFeatureDetector::getDefaultName() // public String getDefaultName() { return getDefaultName_0(nativeObj); } @Override protected void finalize() throws Throwable { delete(nativeObj); } // C++: static Ptr_FastFeatureDetector cv::FastFeatureDetector::create(int threshold = 10, bool nonmaxSuppression = true, FastFeatureDetector_DetectorType type = FastFeatureDetector::TYPE_9_16) private static native long create_0(int threshold, boolean nonmaxSuppression, int type); private static native long create_1(int threshold, boolean nonmaxSuppression); private static native long create_2(int threshold); private static native long create_3(); // C++: void cv::FastFeatureDetector::setThreshold(int threshold) private static native void setThreshold_0(long nativeObj, int threshold); // C++: int cv::FastFeatureDetector::getThreshold() private static native int getThreshold_0(long nativeObj); // C++: void cv::FastFeatureDetector::setNonmaxSuppression(bool f) private static native void setNonmaxSuppression_0(long nativeObj, boolean f); // C++: bool cv::FastFeatureDetector::getNonmaxSuppression() private static native boolean getNonmaxSuppression_0(long nativeObj); // C++: void cv::FastFeatureDetector::setType(FastFeatureDetector_DetectorType type) private static native void setType_0(long nativeObj, int type); // C++: FastFeatureDetector_DetectorType cv::FastFeatureDetector::getType() private static native int getType_0(long nativeObj); // C++: String cv::FastFeatureDetector::getDefaultName() private static native String getDefaultName_0(long nativeObj); // native support for java finalize() private static native void delete(long nativeObj); }