Back to project page Operation-Valkyrie.
The source code is released under:
Terms and conditions Preamble: This Agreement, signed on Jun 10, 2012 [hereinafter: Effective Date] governs the relationship between the Enduser, a private person, (hereinafter: Licensee) and Paul N...
If you think the Android project Operation-Valkyrie listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
// // This file is auto-generated. Please don't modify it! ///* w w w . j a v a 2 s . co m*/ package org.opencv.ml; // C++: class CvBoostParams /** * <p>Boosting training parameters.</p> * * <p>There is one structure member that you can set directly:</p> * * <p>The structure is derived from "CvDTreeParams" but not all of the decision * tree parameters are supported. In particular, cross-validation is not * supported.</p> * * <p>All parameters are public. You can initialize them by a constructor and then * override some of them directly if you want.</p> * * @see <a href="http://docs.opencv.org/modules/ml/doc/boosting.html#cvboostparams">org.opencv.ml.CvBoostParams : public CvDTreeParams</a> */ public class CvBoostParams extends CvDTreeParams { protected CvBoostParams(long addr) { super(addr); } // // C++: CvBoostParams::CvBoostParams() // /** * <p>The constructors.</p> * * <p>See "CvDTreeParams.CvDTreeParams" for description of other parameters.</p> * * <p>Default parameters are:</p> * * @see <a href="http://docs.opencv.org/modules/ml/doc/boosting.html#cvboostparams-cvboostparams">org.opencv.ml.CvBoostParams.CvBoostParams</a> */ public CvBoostParams() { super( CvBoostParams_0() ); return; } // // C++: int CvBoostParams::boost_type // public int get_boost_type() { int retVal = get_boost_type_0(nativeObj); return retVal; } // // C++: void CvBoostParams::boost_type // public void set_boost_type(int boost_type) { set_boost_type_0(nativeObj, boost_type); return; } // // C++: int CvBoostParams::weak_count // public int get_weak_count() { int retVal = get_weak_count_0(nativeObj); return retVal; } // // C++: void CvBoostParams::weak_count // public void set_weak_count(int weak_count) { set_weak_count_0(nativeObj, weak_count); return; } // // C++: int CvBoostParams::split_criteria // public int get_split_criteria() { int retVal = get_split_criteria_0(nativeObj); return retVal; } // // C++: void CvBoostParams::split_criteria // public void set_split_criteria(int split_criteria) { set_split_criteria_0(nativeObj, split_criteria); return; } // // C++: double CvBoostParams::weight_trim_rate // public double get_weight_trim_rate() { double retVal = get_weight_trim_rate_0(nativeObj); return retVal; } // // C++: void CvBoostParams::weight_trim_rate // public void set_weight_trim_rate(double weight_trim_rate) { set_weight_trim_rate_0(nativeObj, weight_trim_rate); return; } @Override protected void finalize() throws Throwable { delete(nativeObj); } // // native stuff // static { System.loadLibrary("opencv_java"); } // C++: CvBoostParams::CvBoostParams() private static native long CvBoostParams_0(); // C++: int CvBoostParams::boost_type private static native int get_boost_type_0(long nativeObj); // C++: void CvBoostParams::boost_type private static native void set_boost_type_0(long nativeObj, int boost_type); // C++: int CvBoostParams::weak_count private static native int get_weak_count_0(long nativeObj); // C++: void CvBoostParams::weak_count private static native void set_weak_count_0(long nativeObj, int weak_count); // C++: int CvBoostParams::split_criteria private static native int get_split_criteria_0(long nativeObj); // C++: void CvBoostParams::split_criteria private static native void set_split_criteria_0(long nativeObj, int split_criteria); // C++: double CvBoostParams::weight_trim_rate private static native double get_weight_trim_rate_0(long nativeObj); // C++: void CvBoostParams::weight_trim_rate private static native void set_weight_trim_rate_0(long nativeObj, double weight_trim_rate); // native support for java finalize() private static native void delete(long nativeObj); }