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! ////from ww w . j a v a 2 s . c o m package org.opencv.ml; import java.lang.String; // C++: class CvStatModel /** * <p>Base class for statistical models in ML.</p> * * <p>In this declaration, some methods are commented off. These are methods for * which there is no unified API (with the exception of the default * constructor). However, there are many similarities in the syntax and * semantics that are briefly described below in this section, as if they are * part of the base class.</p> * * @see <a href="http://docs.opencv.org/modules/ml/doc/statistical_models.html#cvstatmodel">org.opencv.ml.CvStatModel</a> */ public class CvStatModel { protected final long nativeObj; protected CvStatModel(long addr) { nativeObj = addr; } // // C++: void CvStatModel::load(c_string filename, c_string name = 0) // /** * <p>Loads the model from a file.</p> * * <p>The method <code>load</code> loads the complete model state with the * specified name (or default model-dependent name) from the specified XML or * YAML file. The previous model state is cleared by "CvStatModel.clear".</p> * * @param filename a filename * @param name a name * * @see <a href="http://docs.opencv.org/modules/ml/doc/statistical_models.html#cvstatmodel-load">org.opencv.ml.CvStatModel.load</a> */ public void load(String filename, String name) { load_0(nativeObj, filename, name); return; } /** * <p>Loads the model from a file.</p> * * <p>The method <code>load</code> loads the complete model state with the * specified name (or default model-dependent name) from the specified XML or * YAML file. The previous model state is cleared by "CvStatModel.clear".</p> * * @param filename a filename * * @see <a href="http://docs.opencv.org/modules/ml/doc/statistical_models.html#cvstatmodel-load">org.opencv.ml.CvStatModel.load</a> */ public void load(String filename) { load_1(nativeObj, filename); return; } // // C++: void CvStatModel::save(c_string filename, c_string name = 0) // /** * <p>Saves the model to a file.</p> * * <p>The method <code>save</code> saves the complete model state to the specified * XML or YAML file with the specified name or default name (which depends on a * particular class). *Data persistence* functionality from <code>CxCore</code> * is used.</p> * * @param filename a filename * @param name a name * * @see <a href="http://docs.opencv.org/modules/ml/doc/statistical_models.html#cvstatmodel-save">org.opencv.ml.CvStatModel.save</a> */ public void save(String filename, String name) { save_0(nativeObj, filename, name); return; } /** * <p>Saves the model to a file.</p> * * <p>The method <code>save</code> saves the complete model state to the specified * XML or YAML file with the specified name or default name (which depends on a * particular class). *Data persistence* functionality from <code>CxCore</code> * is used.</p> * * @param filename a filename * * @see <a href="http://docs.opencv.org/modules/ml/doc/statistical_models.html#cvstatmodel-save">org.opencv.ml.CvStatModel.save</a> */ public void save(String filename) { save_1(nativeObj, filename); return; } @Override protected void finalize() throws Throwable { delete(nativeObj); } // // native stuff // static { System.loadLibrary("opencv_java"); } // C++: void CvStatModel::load(c_string filename, c_string name = 0) private static native void load_0(long nativeObj, String filename, String name); private static native void load_1(long nativeObj, String filename); // C++: void CvStatModel::save(c_string filename, c_string name = 0) private static native void save_0(long nativeObj, String filename, String name); private static native void save_1(long nativeObj, String filename); // native support for java finalize() private static native void delete(long nativeObj); }