HomeSort by relevance Sort by last modified time
    Searched refs:ANN_MLP (Results 1 - 11 of 11) sorted by null

  /external/opencv3/modules/java/src/
ml+ANN_MLP.java 10 // C++: class ANN_MLP
11 //javadoc: ANN_MLP
12 public class ANN_MLP extends StatModel {
14 protected ANN_MLP(long addr) { super(addr); }
32 //javadoc: ANN_MLP::setTrainMethod(method, param1, param2)
41 //javadoc: ANN_MLP::setTrainMethod(method)
55 //javadoc: ANN_MLP::setActivationFunction(type, param1, param2)
64 //javadoc: ANN_MLP::setActivationFunction(type)
78 //javadoc: ANN_MLP::getTrainMethod()
92 //javadoc: ANN_MLP::setLayerSizes(_layer_sizes
    [all...]
ml.cpp     [all...]
  /external/opencv3/modules/ml/test/
test_precomp.hpp 37 using cv::ml::ANN_MLP;
test_mltests2.cpp 81 return ANN_MLP::BACKPROP;
83 return ANN_MLP::RPROP;
358 Ptr<ANN_MLP> m = ANN_MLP::create();
360 m->setActivationFunction(ANN_MLP::SIGMOID_SYM, 0, 0);
481 model = Algorithm::load<ANN_MLP>( filename );
test_save_load.cpp 195 model = Algorithm::load<ANN_MLP>(filename);
  /external/opencv3/samples/cpp/
points_classifier.cpp 227 Ptr<ANN_MLP> ann = ANN_MLP::create();
229 ann->setActivationFunction(ANN_MLP::SIGMOID_SYM, 1, 1);
231 ann->setTrainMethod(ANN_MLP::BACKPROP, 0.001);
letter_recog.cpp 357 Ptr<ANN_MLP> model;
365 model = load_classifier<ANN_MLP>(filename_to_load);
399 int method = ANN_MLP::BACKPROP;
403 int method = ANN_MLP::RPROP;
411 model = ANN_MLP::create();
413 model->setActivationFunction(ANN_MLP::SIGMOID_SYM, 0, 0);
  /external/opencv3/modules/ml/src/
ann_mlp.cpp 50 trainMethod = ANN_MLP::RPROP;
75 class ANN_MLPImpl : public ANN_MLP
83 setTrainMethod(ANN_MLP::RPROP, 0.1, FLT_EPSILON);
110 if (method != ANN_MLP::RPROP && method != ANN_MLP::BACKPROP)
111 method = ANN_MLP::RPROP;
113 if(method == ANN_MLP::RPROP )
120 else if(method == ANN_MLP::BACKPROP )
709 int iter = params.trainMethod == ANN_MLP::BACKPROP ?
    [all...]
  /external/opencv3/modules/ml/include/opencv2/
ml.hpp 316 new training samples, not completely overwritten (such as NormalBayesClassifier or ANN_MLP).
    [all...]
  /external/opencv3/samples/python2/
letter_recog.py 122 self.model = cv2.ANN_MLP()
  /cts/apps/CtsVerifier/libs/
opencv3-android.jar 

Completed in 120 milliseconds