|
OpenCV 2.4.3.1 | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.opencv.ml.CvDTreeParams org.opencv.ml.CvBoostParams
public class CvBoostParams
Boosting training parameters.
There is one structure member that you can set directly:
Splitting criteria used to choose optimal splits during a weak tree construction. Possible values are:
// C++ code:
The structure is derived from "CvDTreeParams" but not all of the decision tree parameters are supported. In particular, cross-validation is not supported.
All parameters are public. You can initialize them by a constructor and then override some of them directly if you want.
Field Summary |
---|
Fields inherited from class org.opencv.ml.CvDTreeParams |
---|
nativeObj |
Constructor Summary | |
---|---|
|
CvBoostParams()
The constructors. |
protected |
CvBoostParams(long addr)
|
Method Summary | |
---|---|
protected void |
finalize()
|
int |
get_boost_type()
|
int |
get_split_criteria()
|
int |
get_weak_count()
|
double |
get_weight_trim_rate()
|
void |
set_boost_type(int boost_type)
|
void |
set_split_criteria(int split_criteria)
|
void |
set_weak_count(int weak_count)
|
void |
set_weight_trim_rate(double weight_trim_rate)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CvBoostParams()
The constructors.
See "CvDTreeParams.CvDTreeParams" for description of other parameters.
Default parameters are:
// C++ code:
CvBoostParams.CvBoostParams()
boost_type = CvBoost.REAL;
weak_count = 100;
weight_trim_rate = 0.95;
cv_folds = 0;
max_depth = 1;
protected CvBoostParams(long addr)
Method Detail |
---|
protected void finalize() throws java.lang.Throwable
finalize
in class CvDTreeParams
java.lang.Throwable
public int get_boost_type()
public int get_split_criteria()
public int get_weak_count()
public double get_weight_trim_rate()
public void set_boost_type(int boost_type)
public void set_split_criteria(int split_criteria)
public void set_weak_count(int weak_count)
public void set_weight_trim_rate(double weight_trim_rate)
|
Official OpenCV 2.4 Documentation | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |