OpenCV 2.4.2

org.opencv.ml
Class CvANN_MLP_TrainParams

java.lang.Object
  extended by org.opencv.ml.CvANN_MLP_TrainParams

public class CvANN_MLP_TrainParams
extends java.lang.Object

Parameters of the MLP training algorithm. You can initialize the structure by a constructor or the individual parameters can be adjusted after the structure is created.

The back-propagation algorithm parameters:

See Also:
org.opencv.ml.CvANN_MLP_TrainParams

Field Summary
static int BACKPROP
           
protected  long nativeObj
           
static int RPROP
           
 
Constructor Summary
  CvANN_MLP_TrainParams()
          The constructors.
protected CvANN_MLP_TrainParams(long addr)
           
 
Method Summary
protected  void finalize()
           
 double get_bp_dw_scale()
           
 double get_bp_moment_scale()
           
 double get_rp_dw_max()
           
 double get_rp_dw_min()
           
 double get_rp_dw_minus()
           
 double get_rp_dw_plus()
           
 double get_rp_dw0()
           
 TermCriteria get_term_crit()
           
 int get_train_method()
           
 void set_bp_dw_scale(double bp_dw_scale)
           
 void set_bp_moment_scale(double bp_moment_scale)
           
 void set_rp_dw_max(double rp_dw_max)
           
 void set_rp_dw_min(double rp_dw_min)
           
 void set_rp_dw_minus(double rp_dw_minus)
           
 void set_rp_dw_plus(double rp_dw_plus)
           
 void set_rp_dw0(double rp_dw0)
           
 void set_term_crit(TermCriteria term_crit)
           
 void set_train_method(int train_method)
           
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

BACKPROP

public static final int BACKPROP
See Also:
Constant Field Values

nativeObj

protected final long nativeObj

RPROP

public static final int RPROP
See Also:
Constant Field Values
Constructor Detail

CvANN_MLP_TrainParams

public CvANN_MLP_TrainParams()

The constructors.

By default the RPROP algorithm is used:

See Also:
org.opencv.ml.CvANN_MLP_TrainParams.CvANN_MLP_TrainParams

CvANN_MLP_TrainParams

protected CvANN_MLP_TrainParams(long addr)
Method Detail

finalize

protected void finalize()
                 throws java.lang.Throwable
Overrides:
finalize in class java.lang.Object
Throws:
java.lang.Throwable

get_bp_dw_scale

public double get_bp_dw_scale()

get_bp_moment_scale

public double get_bp_moment_scale()

get_rp_dw_max

public double get_rp_dw_max()

get_rp_dw_min

public double get_rp_dw_min()

get_rp_dw_minus

public double get_rp_dw_minus()

get_rp_dw_plus

public double get_rp_dw_plus()

get_rp_dw0

public double get_rp_dw0()

get_term_crit

public TermCriteria get_term_crit()

get_train_method

public int get_train_method()

set_bp_dw_scale

public void set_bp_dw_scale(double bp_dw_scale)

set_bp_moment_scale

public void set_bp_moment_scale(double bp_moment_scale)

set_rp_dw_max

public void set_rp_dw_max(double rp_dw_max)

set_rp_dw_min

public void set_rp_dw_min(double rp_dw_min)

set_rp_dw_minus

public void set_rp_dw_minus(double rp_dw_minus)

set_rp_dw_plus

public void set_rp_dw_plus(double rp_dw_plus)

set_rp_dw0

public void set_rp_dw0(double rp_dw0)

set_term_crit

public void set_term_crit(TermCriteria term_crit)

set_train_method

public void set_train_method(int train_method)

Official OpenCV 2.4 Documentation