Struct opencv::ml::ParamGrid  [−][src]
pub struct ParamGrid { /* fields omitted */ }Expand description
The structure represents the logarithmic grid range of statmodel parameters.
It is used for optimizing statmodel accuracy by varying model parameters, the accuracy estimate being computed by cross-validation.
Implementations
Constructor with parameters
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto method
Parameters
- minVal: minimum value of the parameter grid
- maxVal: maximum value of the parameter grid
- logstep: Logarithmic step for iterating the statmodel parameter
C++ default parameters
- min_val: 0.
- max_val: 0.
- logstep: 1.
Trait Implementations
Minimum value of the statmodel parameter. Default value is 0.
Maximum value of the statmodel parameter. Default value is 0.
Logarithmic step for iterating the statmodel parameter. Read more
