Preprocessing from Cascade Classifier for Decision Trees [closed]
Hello OpenCV Community,
i want to compare/ test the performance of Decision Trees and Cascade Classifiers for Person Detection. My Problem is that the cv::CascadeClassifier does the Preprocessing like Sliding Window etc. automatically in its Methods but the cv::DTree dont.
Is there a solution to extract the methods from the CC and use it for the DTrees also, or does the cv::DTree has something comparable?
I hope the question is understandable.
Thank you for your Advice,
Kind regards,
Derrick
I used LBP and Haar Features for the Cascade Classifier. ( I prefer LBP because of the training time)
For DTree i dont know how to use/ select feature. I train it with 24x48 px positive and negative Images.
My Problem is: I cant put whole Input Pictures in the DTree Prediciton, i need to cut it by myself in the trained Image size (24x48). In "detectmultiscale" of CC i can put the whole image in. (e.g. 270x480)
@berak
@berak Can you tell me how i use features (LBP/ HAAR) with the DTrees?
Does it make any sense to use DTrees for Object Detection (without recognition)?