diff --git a/openbr/plugins/classification/lda.cpp b/openbr/plugins/classification/lda.cpp index 4fc9ff5..44917e6 100644 --- a/openbr/plugins/classification/lda.cpp +++ b/openbr/plugins/classification/lda.cpp @@ -478,6 +478,8 @@ class LDATransform : public Transform if (normalize) stdDev = sqrt(results.array().square().sum() / trainingSet.size()); } + + qDebug() << "LDA projection dimensions:" << projection.rows() << "->" << projection.cols(); } void project(const Template &src, Template &dst) const