List of usage examples for org.opencv.ml DTrees setCVFolds
public void setCVFolds(int val)
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); trees.setMaxDepth(1000);//from w w w . j av a 2 s. co m return trees; }