Ejemplo n.º 1
0
        //
        // C++: static Ptr_EM cv::ml::EM::create()
        //

        //javadoc: EM::create()
        public static EM create()
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            EM retVal = EM.__fromPtr__(ml_EM_create_10());

            return(retVal);
#else
            return(null);
#endif
        }
Ejemplo n.º 2
0
        //javadoc: EM::load(filepath)
        public static EM load(string filepath)
        {
#if ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            EM retVal = EM.__fromPtr__(ml_EM_load_11(filepath));

            return(retVal);
#else
            return(null);
#endif
        }