BSI-OFIQ / OFIQ-Project

Open Source Facial Image Quality
Other
38 stars 12 forks source link

Some doubts about Ofiq #42

Closed Raulr00 closed 1 month ago

Raulr00 commented 1 month ago

Hello, I have a few questions:

bbtams commented 1 month ago
Raulr00 commented 1 month ago

But for example, if in my case I just want to extract all the features of the images in my database following the ISO/IEC 29794-5 standard, do I have to build my own C++ project and take inspiration from the source code of the OFIQSampleApp? I guess the answer is yes, just to confirm.

Thanks for your time and answer.

m-schaubert commented 1 month ago

Do you mean face quality measures when you say "extract all the features"? In that case, you can do the following - you just build the OFIQSampleApp without modifying it and run it, then you'll get the output for the measures listed in your config file (by default - .\data\ofiq_config.jaxn) in the section "measures": []. If you specify the command line argument -o, e.g. -o ofiq_results.csv, the results will be written in that file, else they'll be printed out.

Raulr00 commented 1 month ago

Yes, I referred to the face quality measures. I have already been working with the sample app for about a month, and when I read the documentation, I assumed that you could use the sample app to extract the face quality measures, ensuring you follow the ISO/IEC 29794-5 standard (or you can also build your own project using OFIQlib as bbtams said).

The problem I saw with bald people and the noHeadCoverings, along with my interest in getting the landmarks, led me to write this issue. So, any changes you make to the app will not be reflected in the sample app, right? Then I assume it is much better to build my own project following the sampleApp example to keep my OFIQlib updated.

Thanks for your time!