Example usage for org.opencv.ml ANN_MLP create

List of usage examples for org.opencv.ml ANN_MLP create

Introduction

In this page you can find the example usage for org.opencv.ml ANN_MLP create.

Prototype

public static ANN_MLP create() 

Source Link

Usage

From source file:qupath.opencv.classify.NeuralNetworksClassifier.java

License:Open Source License

@Override
protected ANN_MLP createClassifier() {
    ANN_MLP classifier = ANN_MLP.create();
    classifier.setLayerSizes(new Mat());
    return classifier;
}