//
        // C++: static Ptr_TransientAreasSegmentationModule cv::bioinspired::TransientAreasSegmentationModule::create(Size inputSize)
        //

        //javadoc: TransientAreasSegmentationModule::create(inputSize)
        public static TransientAreasSegmentationModule create(Size inputSize)
        {
#if ((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
        }
        //
        // C++: static Ptr_TransientAreasSegmentationModule cv::bioinspired::TransientAreasSegmentationModule::create(Size inputSize)
        //

        /**
         * allocator
         *     param inputSize : size of the images input to segment (output will be the same size)
         * return automatically generated
         */
        public static TransientAreasSegmentationModule create(Size inputSize)
        {
            return(TransientAreasSegmentationModule.__fromPtr__(bioinspired_TransientAreasSegmentationModule_create_10(inputSize.width, inputSize.height)));
        }