jankolf / GraFIQs

Official repository of paper "GraFIQs: Face Image Quality Assessment Using Gradient Magnitudes"

Home Page:https://arxiv.org/pdf/2404.12203.pdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Official repository of

GraFIQs: Face Image Quality Assessment
Using Gradient Magnitudes

Jan Niklas Kolf 1,2Naser Damer 1,2Fadi Boutros 1

1 Fraunhofer IGD   2 Technische Universität Darmstadt

Accepted at CVPR Workshop 2024

Overview 🔎

An overview of the proposed GraFIQs for assessing the quality of unseen testing samples. Sample I is passed into the pretrained face recognition model and Batch Normalization statistics are extracted. Then, the mean-squared-error between the Batch Normalization statistics obtained by processing the testing sample and the one recorded during the face recognition training is calculated. The mean-squared-error is backpropagated through the pretrained face recognition model to extract the gradient magnitudes of parameter group φ. Finally, the absolute sum of gradient magnitudes of φ is calculated and utilized as Face Image Quality.

Abstract 🤏

Face Image Quality Assessment (FIQA) estimates the utility of face images for automated face recognition (FR) systems. We propose in this work a novel approach to assess the quality of face images based on inspecting the required changes in the pre-trained FR model weights to minimize differences between testing samples and the distribution of the FR training dataset. To achieve that, we propose quantifying the discrepancy in Batch Normalization statistics (BNS), including mean and variance, between those recorded during FR training and those obtained by processing testing samples through the pretrained FR model. We then generate gradient magnitudes of pretrained FR weights by backpropagating the BNS through the pretrained model. The cumulative absolute sum of these gradient magnitudes serves as the FIQ for our approach. Through comprehensive experimentation, we demonstrate the effectiveness of our training-free and quality labeling-free approach, achieving competitive performance to recent state-of-theart FIQA approaches without relying on quality labeling, the need to train regression networks, specialized architectures, or designing and optimizing specific loss functions.

Usage 🖥

Setup

Install all necessary packages in a Python >=3.10 environment:

   pip install torch torchvision numpy tqdm opencv-python

Extract Face Image Quality Scores

To extract scores for images in a folder,

  1. download pre-trained model weights from this link and place them in a location of your choice
  2. run python extract_grafiqs.py and set arguments accordingly
    usage: extract_grafiqs.py [-h] [--image-path IMAGE_PATH] [--image-extension IMAGE_EXTENSION]
                          [--output-dir OUTPUT_DIR] [--backbone {iresnet50,iresnet100}]
                          [--weights WEIGHTS] [--gpu GPU]
                          [--path-replace PATH_REPLACE] [--path-replace-with PATH_REPLACE_WITH]
                          [--bgr2rgb]
    GraFIQs
    
    options:
    -h, --help            show this help message and exit
    --image-path IMAGE_PATH
                            Path to images.
    --image-extension IMAGE_EXTENSION
                            Extension/File type of images (e.g. jpg, png).
    --output-dir OUTPUT_DIR
                            Directory to write score files to (will be created if it does not exist).
    --backbone {iresnet50,iresnet100}
                            Backbone architecture to use.
    --weights WEIGHTS     Path to backbone architecture weights.
    --gpu GPU             GPU to use.
    --path-replace PATH_REPLACE
                            Prefix of image path which shall be replaced.
    --path-replace-with PATH_REPLACE_WITH
                            String that replaces prefix given in --path-replace.
    --bgr2rgb             If specified, changes color space of CV2 image from BGR (default) to RGB.
    

Evaluation and EDC curves

Please refer to CR-FIQA repository for evaluation and EDC plotting.

Citation ✒

If you found this work helpful for your research, please cite the article with the following bibtex entry:

@misc{kolf2024grafiqs,
      title={GraFIQs: Face Image Quality Assessment Using Gradient Magnitudes}, 
      author={Jan Niklas Kolf and Naser Damer and Fadi Boutros},
      year={2024},
      eprint={2404.12203},
      archivePrefix={arXiv},
      primaryClass={cs.CV}
}

License

This project is licensed under the terms of the Attribution-NonCommercial 4.0 International (CC BY-NC 4.0) license.

Copyright (c) 2024 Fraunhofer Institute for Computer Graphics Research IGD, Darmstadt.

About

Official repository of paper "GraFIQs: Face Image Quality Assessment Using Gradient Magnitudes"

https://arxiv.org/pdf/2404.12203.pdf


Languages

Language:Python 100.0%