LDA in Opencv python

706 Views Asked by At

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

1

There are 1 best solutions below

1
On

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!