//javadoc: FastFeatureDetector::create(threshold, nonmaxSuppression) public static FastFeatureDetector create(int threshold, bool nonmaxSuppression) { #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER FastFeatureDetector retVal = FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_11(threshold, nonmaxSuppression)); return(retVal); #else return(null); #endif }
//javadoc: FastFeatureDetector::create() public static FastFeatureDetector create() { #if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER FastFeatureDetector retVal = FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_13()); return(retVal); #else return(null); #endif }
public static FastFeatureDetector create() { return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_13())); }
public static FastFeatureDetector create(int threshold) { return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_12(threshold))); }
public static FastFeatureDetector create(int threshold, bool nonmaxSuppression) { return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_11(threshold, nonmaxSuppression))); }