List of usage examples for org.opencv.ml DTrees create
public static DTrees create()
From source file:qupath.opencv.classify.DTreesClassifier.java
License:Open Source License
@Override protected DTrees createClassifier() { DTrees trees = DTrees.create(); // Bug at time of writing appears to require these to be set, // see http://code.opencv.org/issues/4480 trees.setCVFolds(0);/*w w w.j a v a2 s .c om*/ trees.setMaxDepth(1000); return trees; }