예제 #1
0
파일: SVM.cs 프로젝트: gxliu/emgucv-code
        /// <summary>
        /// Get the default parameter grid for the specific SVM type
        /// </summary>
        /// <param name="type">The SVM type</param>
        /// <returns>The default parameter grid for the specific SVM type </returns>
        public static MCvParamGrid GetDefaultGrid(MlEnum.SvmParamType type)
        {
            MCvParamGrid grid = new MCvParamGrid();

            MlInvoke.CvSVMGetDefaultGrid(type, ref grid);
            return(grid);
        }
예제 #2
0
 public static extern void CvSVMGetDefaultGrid(MlEnum.SvmParamType type, ref MCvParamGrid grid);