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

            return(retVal);
#else
            return(null);
#endif
        }
Example #2
0
 /**
  * Static constructor
  * return automatically generated
  */
 public static StandardCollector create()
 {
     return(StandardCollector.__fromPtr__(face_StandardCollector_create_11()));
 }
Example #3
0
        //
        // C++: static Ptr_StandardCollector cv::face::StandardCollector::create(double threshold = DBL_MAX)
        //

        /**
         * Static constructor
         *     param threshold set threshold
         * return automatically generated
         */
        public static StandardCollector create(double threshold)
        {
            return(StandardCollector.__fromPtr__(face_StandardCollector_create_10(threshold)));
        }