Package org.opencv.ml
Class ParamGrid
- java.lang.Object
-
- org.opencv.ml.ParamGrid
-
-
Field Summary
Fields Modifier and Type Field Description protected long
nativeObj
-
Constructor Summary
Constructors Modifier Constructor Description protected
ParamGrid(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ParamGrid
__fromPtr__(long addr)
static ParamGrid
create()
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto methodstatic ParamGrid
create(double minVal)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto methodstatic ParamGrid
create(double minVal, double maxVal)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto methodstatic ParamGrid
create(double minVal, double maxVal, double logstep)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto methodprotected void
finalize()
double
get_logStep()
double
get_maxVal()
double
get_minVal()
long
getNativeObjAddr()
void
set_logStep(double logStep)
void
set_maxVal(double maxVal)
void
set_minVal(double minVal)
-
-
-
Field Detail
-
nativeObj
protected final long nativeObj
-
-
Constructor Detail
-
ParamGrid
protected ParamGrid(long addr)
-
-
Method Detail
-
getNativeObjAddr
public long getNativeObjAddr()
-
__fromPtr__
public static ParamGrid __fromPtr__(long addr)
-
create
public static ParamGrid create(double minVal, double maxVal, double logstep)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto method- Parameters:
minVal
- minimum value of the parameter gridmaxVal
- maximum value of the parameter gridlogstep
- Logarithmic step for iterating the statmodel parameter- Returns:
- automatically generated
-
create
public static ParamGrid create(double minVal, double maxVal)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto method- Parameters:
minVal
- minimum value of the parameter gridmaxVal
- maximum value of the parameter grid- Returns:
- automatically generated
-
create
public static ParamGrid create(double minVal)
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto method- Parameters:
minVal
- minimum value of the parameter grid- Returns:
- automatically generated
-
create
public static ParamGrid create()
Creates a ParamGrid Ptr that can be given to the %SVM::trainAuto method- Returns:
- automatically generated
-
get_minVal
public double get_minVal()
-
set_minVal
public void set_minVal(double minVal)
-
get_maxVal
public double get_maxVal()
-
set_maxVal
public void set_maxVal(double maxVal)
-
get_logStep
public double get_logStep()
-
set_logStep
public void set_logStep(double logStep)
-
-