Commit 41c932f3 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

FaceRecognizer class is now derived from Algorithm, therefore it's possible to…

FaceRecognizer class is now derived from Algorithm, therefore it's possible to set and retrieve the parameters using conventional Algorithm::set and Algorithm::get methods
parent fd68cc76
......@@ -918,7 +918,7 @@ namespace cv
void lda(InputArray src, InputArray labels);
};
class CV_EXPORTS FaceRecognizer
class CV_EXPORTS FaceRecognizer : public Algorithm
{
public:
//! virtual destructor
......@@ -970,6 +970,8 @@ namespace cv
};
CV_EXPORTS void applyColorMap(InputArray src, OutputArray dst, int colormap);
CV_EXPORTS bool initModule_contrib();
}
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment