Ask Your Question

Creator's profile - activity

2016-08-20 14:53:05 -0600 received badge  Nice Answer (source)
2016-08-12 03:44:07 -0600 received badge  Teacher (source)
2016-08-12 03:43:50 -0600 received badge  Necromancer (source)
2016-08-12 01:31:50 -0600 received badge  Necromancer (source)
2016-08-12 00:25:33 -0600 answered a question semantic segmentation

There is a fast and reliable CRF library, which is built upon OpenCV: http://research.project-10.de/dgm/

2016-08-12 00:23:30 -0600 answered a question opencv CRF(conditional random fields)

There is a fast and reliable CRF library, which is built upon OpenCV: http://research.project-10.de/dgm/

2016-01-23 09:53:33 -0600 received badge  Supporter (source)
2016-01-23 09:52:44 -0600 received badge  Student (source)
2016-01-23 09:49:50 -0600 asked a question How to inherit from cv::ml::Algorithm class and overload its methods in OpenCV 3.x

Dear all,

I would like to overload method predict() from the cv::ml::RTrees class in order to achieve array of beliefs for all classes instead of a simple class prediction. For this purpose I need also access to the class variables, like roots and ntrees.

For the OpenCV v.2.4.11 it worked fine, please see the Link:source code

Please advise how to overload a class method from cv::ml::RTrees.

Thank you in advance