I'm not talking about the "people tags" embeded in the XMP packets of JPEGs. I'm talking about the face database used to recognize new faces.
I want to add to my program the option to recognize faces using the already trained database of WLPG. I managed to use the API (a type library dll) to detect faces, but to recognize them it needs an Exemplar Cache object that is not available in the same API. I could create my own object, but i want to use the already existing one to avoid duplicate training for the user.
I know the database is in "%localappdata%\Local\Microsoft\Windows Live Photo Gallery\" and that it is in SQL Server Compact Edition 3.1 format. I opened the database with Visual Studio 2010 but I would prefer to read it without accesing the database directly and I don't see a DLL that exports that functionality.
BTW, I'm using Delphi 2010.
Any ideas?