示例#1
0
        //javadoc: LUCID::create()
        public static LUCID create()
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            LUCID retVal = LUCID.__fromPtr__(xfeatures2d_LUCID_create_12());

            return(retVal);
#else
            return(null);
#endif
        }
示例#2
0
        //
        // C++: static Ptr_LUCID cv::xfeatures2d::LUCID::create(int lucid_kernel = 1, int blur_kernel = 2)
        //

        //javadoc: LUCID::create(lucid_kernel, blur_kernel)
        public static LUCID create(int lucid_kernel, int blur_kernel)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            LUCID retVal = LUCID.__fromPtr__(xfeatures2d_LUCID_create_10(lucid_kernel, blur_kernel));

            return(retVal);
#else
            return(null);
#endif
        }
示例#3
0
 /**
  * return automatically generated
  */
 public static LUCID create()
 {
     return(LUCID.__fromPtr__(xfeatures2d_LUCID_create_12()));
 }
示例#4
0
 /**
  * param lucid_kernel kernel for descriptor construction, where 1=3x3, 2=5x5, 3=7x7 and so forth
  * return automatically generated
  */
 public static LUCID create(int lucid_kernel)
 {
     return(LUCID.__fromPtr__(xfeatures2d_LUCID_create_11(lucid_kernel)));
 }
 public LUCID(OpenCVForUnity.Xfeatures2dModule.LUCID nativeObj) : base(nativeObj)
 {
 }