Reputation: 11
In OpenCV 2, how do we perform LDA analysis? I can see the C++ documentation but there seems to be nothing in Python.
http://docs.opencv.org/trunk/db/d59/classcv_1_1LDA.html
Upvotes: 1
Views: 703
Reputation: 93410
I saw a gentleman doing a great presentation last year on Machine Learning and Computer Vision for graduate students at a local university, demonstrating FruitClassification, a simple Python application that uses scikit-learn LDA implementation to classify Apples and Oranges. It was great!
I recently ported it to C++ to use OpenCV's LDA implementation.
Enjoy it!
Upvotes: 1