Is there a C++ Builder demo similar to the Face Recognizer application? I'm having some difficulties to port the following code to C++
m_faceRecognizer := IEVisionLib().createFaceRecognizer();
m_faceRecognizer.selectEigenFaceRecognizer();
if FileExists( IncludeTrailingPathDelimiter( ExtractFilePath( Application.ExeName )) + LEARN_FILENAME ) then
m_faceRecognizer.load(PWideChar(WideString( IncludeTrailingPathDelimiter( ExtractFilePath( Application.ExeName )) + LEARN_FILENAME )))
else
TrainDataset();
I can't find a way to access the load method in the interface.
Thanks in advance,
Andre