Beispiel #1
0
        //javadoc: StarDetector::create(maxSize, responseThreshold)
        public static StarDetector create(int maxSize, int responseThreshold)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            StarDetector retVal = StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_13(maxSize, responseThreshold));

            return(retVal);
#else
            return(null);
#endif
        }
Beispiel #2
0
        //
        // C++: static Ptr_StarDetector cv::xfeatures2d::StarDetector::create(int maxSize = 45, int responseThreshold = 30, int lineThresholdProjected = 10, int lineThresholdBinarized = 8, int suppressNonmaxSize = 5)
        //

        //javadoc: StarDetector::create(maxSize, responseThreshold, lineThresholdProjected, lineThresholdBinarized, suppressNonmaxSize)
        public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized, int suppressNonmaxSize)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            StarDetector retVal = StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_10(maxSize, responseThreshold, lineThresholdProjected, lineThresholdBinarized, suppressNonmaxSize));

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

            return(retVal);
#else
            return(null);
#endif
        }
 public static StarDetector create()
 {
     return(StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_15()));
 }
 public static StarDetector create(int maxSize)
 {
     return(StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_14(maxSize)));
 }
 public static StarDetector create(int maxSize, int responseThreshold)
 {
     return(StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_13(maxSize, responseThreshold)));
 }
 public static StarDetector create(int maxSize, int responseThreshold, int lineThresholdProjected, int lineThresholdBinarized)
 {
     return(StarDetector.__fromPtr__(xfeatures2d_StarDetector_create_11(maxSize, responseThreshold, lineThresholdProjected, lineThresholdBinarized)));
 }