//
        // C++:  Ptr_TransientAreasSegmentationModule createTransientAreasSegmentationModule(Size inputSize)
        //

        //javadoc: createTransientAreasSegmentationModule(inputSize)
        public static TransientAreasSegmentationModule createTransientAreasSegmentationModule(Size inputSize)
        {
#if UNITY_PRO_LICENSE || ((UNITY_ANDROID || UNITY_IOS) && !UNITY_EDITOR) || UNITY_5
            TransientAreasSegmentationModule retVal = new TransientAreasSegmentationModule(bioinspired_Bioinspired_createTransientAreasSegmentationModule_10(inputSize.width, inputSize.height));

            return(retVal);
#else
            return(null);
#endif
        }
        //
        // C++: static Ptr_TransientAreasSegmentationModule create(Size inputSize)
        //

        //javadoc: TransientAreasSegmentationModule::create(inputSize)
        public static TransientAreasSegmentationModule create(Size inputSize)
        {
#if UNITY_PRO_LICENSE || ((UNITY_ANDROID || UNITY_IOS || UNITY_WEBGL) && !UNITY_EDITOR) || UNITY_5 || UNITY_5_3_OR_NEWER
            TransientAreasSegmentationModule retVal = TransientAreasSegmentationModule.__fromPtr__(bioinspired_TransientAreasSegmentationModule_create_10(inputSize.width, inputSize.height));

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