Example #1
0
        //javadoc: LATCH::create(bytes)
        public static LATCH create(int bytes)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            LATCH retVal = LATCH.__fromPtr__(xfeatures2d_LATCH_create_13(bytes));

            return(retVal);
#else
            return(null);
#endif
        }
Example #2
0
        //javadoc: LATCH::create(bytes, rotationInvariance, half_ssd_size)
        public static LATCH create(int bytes, bool rotationInvariance, int half_ssd_size)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            LATCH retVal = LATCH.__fromPtr__(xfeatures2d_LATCH_create_11(bytes, rotationInvariance, half_ssd_size));

            return(retVal);
#else
            return(null);
#endif
        }
 public LATCH(OpenCVForUnity.Xfeatures2dModule.LATCH nativeObj) : base(nativeObj)
 {
 }
Example #4
0
 public static LATCH create()
 {
     return(LATCH.__fromPtr__(xfeatures2d_LATCH_create_14()));
 }
Example #5
0
 public static LATCH create(int bytes)
 {
     return(LATCH.__fromPtr__(xfeatures2d_LATCH_create_13(bytes)));
 }
Example #6
0
 public static LATCH create(int bytes, bool rotationInvariance)
 {
     return(LATCH.__fromPtr__(xfeatures2d_LATCH_create_12(bytes, rotationInvariance)));
 }
Example #7
0
 public static LATCH create(int bytes, bool rotationInvariance, int half_ssd_size)
 {
     return(LATCH.__fromPtr__(xfeatures2d_LATCH_create_11(bytes, rotationInvariance, half_ssd_size)));
 }