Beispiel #1
0
        //javadoc: AgastFeatureDetector::create(threshold, nonmaxSuppression)
        public static AgastFeatureDetector create(int threshold, bool nonmaxSuppression)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            AgastFeatureDetector retVal = AgastFeatureDetector.__fromPtr__(features2d_AgastFeatureDetector_create_11(threshold, nonmaxSuppression));

            return(retVal);
#else
            return(null);
#endif
        }
Beispiel #2
0
        //javadoc: AgastFeatureDetector::create()
        public static AgastFeatureDetector create()
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            AgastFeatureDetector retVal = AgastFeatureDetector.__fromPtr__(features2d_AgastFeatureDetector_create_13());

            return(retVal);
#else
            return(null);
#endif
        }
Beispiel #3
0
 public static AgastFeatureDetector create()
 {
     return(AgastFeatureDetector.__fromPtr__(features2d_AgastFeatureDetector_create_13()));
 }
Beispiel #4
0
 public static AgastFeatureDetector create(int threshold)
 {
     return(AgastFeatureDetector.__fromPtr__(features2d_AgastFeatureDetector_create_12(threshold)));
 }
Beispiel #5
0
 public static AgastFeatureDetector create(int threshold, bool nonmaxSuppression)
 {
     return(AgastFeatureDetector.__fromPtr__(features2d_AgastFeatureDetector_create_11(threshold, nonmaxSuppression)));
 }