-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is SVM classifier clue on this package? #11
Comments
We tested several classifiers (SVM, AdaBoost, RandomForest) with Kidono's features. Since AdaBoost showed a bit better accuracy than the other ones, in this work, we are using AdaBoost instead of SVM. |
Do you have the SVM classifier version of this code? |
Since I did it a few years ago, and I left my former university last year, I'm not sure if I can find the SVM model... If you want, I can share the dataset I used to train the classifiers so that you can train the model by yourself. |
Any help would be greatly appreciated. May you share it? |
Another question: What are the extracted features on this project? And are these features the same in AdaBoost and SVM? |
We are using the features proposed in the following paper: You can extract the features from a point cloud with this code. |
Here, you can find the dataset for pedestrian detection. It consists of KITTI, sydney, and our own dataset. To avoid some copyright problems, I put only the extracted features saved in the libsvm format. https://drive.google.com/open?id=1ovFA9gwjo1zD6cj_q0dnGFR6XYapxbxk |
Thanks a lot. Now, can I use any classifier to train with this dataset? |
I would also like to know how to train on custom data(AdaBoost, RandomForest), any guidance to save hours reverse understanding the code would be great. Thank you very much!! |
This package uses the standard cv::ml model, and you can replace it with any custom model you want to use. |
Very thank you for your advice, it helped me a lot. |
@koide3 |
@koide3 |
According to your published paper, the selected classifier is SVM and AdaBoost ([43] Kidono reference), but I cannot find SVM clue on your package.
I found the only AdaBoost model and its code (
people_detector.cpp
).The text was updated successfully, but these errors were encountered: