Exemple #1
0
        //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
        }
Exemple #2
0
        //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
        }
Exemple #3
0
 public static FastFeatureDetector create()
 {
     return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_13()));
 }
Exemple #4
0
 public static FastFeatureDetector create(int threshold)
 {
     return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_12(threshold)));
 }
Exemple #5
0
 public static FastFeatureDetector create(int threshold, bool nonmaxSuppression)
 {
     return(FastFeatureDetector.__fromPtr__(features2d_FastFeatureDetector_create_11(threshold, nonmaxSuppression)));
 }