Example usage for org.opencv.ml NormalBayesClassifier create

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

Introduction

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

Prototype

public static NormalBayesClassifier create() 

Source Link

Usage

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

License:Open Source License

@Override
protected NormalBayesClassifier createClassifier() {
    return NormalBayesClassifier.create(); // Not really any interesting parameters to change..?
}