Exemple #1
0
        /// <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);
        }
Exemple #2
0
 public static extern void CvSVMGetDefaultGrid(MlEnum.SvmParamType type, ref MCvParamGrid grid);