Missing predict method in java class CvDTree
I'd like to use a decision tree for classification in java (using opencv 2.4.6) but the CvDTree is missing the predict method (same in the current version. See doc: http://docs.opencv.org/java/org/openc...). What is the reason for this? Any alternatives for classification? Random trees?
problem with DTree is, that the prediction return a DTreeNode* , and that the java wrapper probably skipped it (look at your build logs)
CvRTrees might work, (i guess)
Thanks, I implemented it with CvRTrees.