Skip to main content

implementation and weights for facial landmarks in thermal images trained with the dataset described in 'T-FAKE: Synthesizing Thermal Images for Facial Landmarking'.

Project description

PyPI - Version PyPI - Python Version PyPI - License PyPI - Downloads PyPI Downloads

Thermal-facial-alignment network (TFAN) trained on the T-FAKE dataset

Using the landmarker

Install and run:

pip install thermal-face-alignment
import cv2
from tfan import ThermalLandmarks

# Read a thermal image (grayscale)
image = cv2.imread("thermal.png", cv2.IMREAD_GRAYSCALE)

# Initialize landmarker (downloads weights on first use)
landmarker = ThermalLandmarks(device="cpu", n_landmarks=70)

landmarks, confidences = landmarker.process(image)

TFW Example Prediction Predicted 70 and 478 point landmarks on an example from the TFW Dataset.

Landmarking example Predicted 70 and 478 point landmarks on an example from the BU-TIV Benchmark.

Practical Usage

The ThermalLandmarks wraps a landmarker trained on T-FAKE either with a tracker-free sliding window selecting the face with lowest uncertainty or via a bbox computed with a smaller model.

Please note that we trained our network with temperature value range of 20°C to 40°C. While our implementation performs an automatic rescaling, please make sure that you adapt our landmarker options based on the input pixel values.

Initialization options

ThermalLandmarks(
    model_path=None,
    device="cpu",
    gpus=[0, 1],
    eta=0.75,
    max_lvl=0,
    stride=100,
    n_landmarks=478, # 478 or 70 point landmarks are supported
    normalize=True,
)
  • model_path (str or Path, optional) Path to a pretrained DMMv2 model (state_dict). If omitted, pretrained weights matching n_landmarks are downloaded automatically.

  • device ("cpu" or "cuda", default "cpu") Torch device used for inference. When using "cuda", the model may be wrapped in DataParallel.

  • gpus (list[int], default [0, 1]) GPU device IDs used when device="cuda".

  • n_landmarks (int, default 478) Number of facial landmarks predicted per face. Choices:

    • 70 — sparse landmarks following the Face Synthetic convention of (Wood et al., 2021).
    • 478 — dense landmarks following the MediaPipe face mesh convention.
  • normalize (bool, default True) Apply ImageNet normalization to cropped face patches before inference. Assumes inputs are scaled to [0, 255].

  • eta (float, default 0.75) Pyramid scale factor used in sliding-window mode.

  • max_lvl (int, default 0) Maximum pyramid level for multi-scale sliding-window inference.

  • stride (int, default 100) Pixel stride used during sliding-window scanning.


Inference options

landmarks, confidences = landmarker.process(
    image,
    sliding_window=False,
    multi=False,
    mode="auto",
)
  • image (numpy.ndarray) Input frame:

    • H×W: thermal or grayscale image
    • H×W×3: RGB/BGR image
  • mode ("auto" | "temperature" | "pixel", default "auto") Controls how numeric values are interpreted:

    • "temperature": 2D thermal image in °C
    • "pixel": pixel intensities in [0, 255] or [0, 1]
    • "auto": inferred from dtype and value range
  • multi (bool, default False) If True, return landmarks for all detected faces. If False, only the first face is returned.

  • sliding_window (bool, default False) Enable multi-scale sliding-window inference. This path does not run the YOLO/TFW face tracker. With multi=True, overlapping candidates are merged with NMS. Note: stride > 112 is suboptimal for multi=True.


Outputs

  • landmarks Pixel coordinates in the original image:

    • List of (n_landmarks, 2) arrays (multi-face)
    • Single (n_landmarks, 2) array (sliding window)
  • confidences Per-landmark uncertainty scores of shape (n_landmarks,)

Background

This landmarker is an implementation of our work presented in our CVPR paper on thermal landmarking (Main GitHub). We employed the TFW face detector for our inital face detection as it performed very well in our benchmark. Please note that this library is meant for research purposes only.

Landmarker Performance on our Charlotte Benchmark

landmarks

Training Dataset

Image

We trained our landmarker on our custom-made T-FAKE dataset consisting of synthetic thermal images. To download the original color images, sparse annotations, and segmentation masks for the dataset, please use the links in the FaceSynthetics repository.

Our dataset has been generated for a warm and for a cold condition. Each dataset can be downloaded separately as

Pre-trained models

The models for the thermalization as well as the landmarkers can be downloaded from here.

License

Our landmarking methods and the training dataset are licensed under the Attribution-NonCommercial-ShareAlike 4.0 International license as it is derived from the FaceSynthetics dataset.

Citation

If you use this code for your own work, please cite our paper:

P. Flotho, M. Piening, A. Kukleva and G. Steidl, “T-FAKE: Synthesizing Thermal Images for Facial Landmarking,” Proceedings of the Computer Vision and Pattern Recognition Conference (CVPR), 2025. CVF Open Access

BibTeX entry

@InProceedings{tfake2025_CVPR,
    author    = {Flotho, Philipp and Piening, Moritz and Kukleva, Anna and Steidl, Gabriele},
    title     = {T-FAKE: Synthesizing Thermal Images for Facial Landmarking},
    booktitle = {Proceedings of the Computer Vision and Pattern Recognition Conference (CVPR)},
    month     = {June},
    year      = {2025},
    pages     = {26356-26366}
}

The thermal face bounding box detection in this repo uses the TFW landmarker model, please additionally cite:

Kuzdeuov, A., Aubakirova, D., Koishigarina, D., & Varol, H. A. (2022). TFW: Annotated Thermal Faces in the Wild Dataset. IEEE Transactions on Information Forensics and Security, 17, 2084–2094. https://doi.org/10.1109/TIFS.2022.3177949

@article{9781417,
    author={Kuzdeuov, Askat and Aubakirova, Dana and Koishigarina, Darina and Varol, Huseyin Atakan},
    journal={IEEE Transactions on Information Forensics and Security},
    title={TFW: Annotated Thermal Faces in the Wild Dataset},
    year={2022},
    volume={17},
    pages={2084-2094},
    doi={10.1109/TIFS.2022.3177949}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

thermal_face_alignment-1.0.1a1.tar.gz (19.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

thermal_face_alignment-1.0.1a1-py3-none-any.whl (15.1 kB view details)

Uploaded Python 3

File details

Details for the file thermal_face_alignment-1.0.1a1.tar.gz.

File metadata

  • Download URL: thermal_face_alignment-1.0.1a1.tar.gz
  • Upload date:
  • Size: 19.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for thermal_face_alignment-1.0.1a1.tar.gz
Algorithm Hash digest
SHA256 ab4fa7915172109f218195a179a78f189307f70202d7b2e12d4c7039e63176d5
MD5 8b15dd197290f38cf9e8740d81567ed2
BLAKE2b-256 61fdb0ecc954296a635799663f3af1950317b86e5dcb70abfb63f38cfb791db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for thermal_face_alignment-1.0.1a1.tar.gz:

Publisher: pypi-release.yml on openscivision/thermal-face-alignment

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file thermal_face_alignment-1.0.1a1-py3-none-any.whl.

File metadata

File hashes

Hashes for thermal_face_alignment-1.0.1a1-py3-none-any.whl
Algorithm Hash digest
SHA256 dc5220524a9bd398d55ea2ef7a637e103452ab979d40046aec48918b8588cb9b
MD5 88b511b1cecf31e62deea78058f20b46
BLAKE2b-256 f82e48c17f1400e2ba12192d055e43377db8266b83fb3bf7812e08ec31f70089

See more details on using hashes here.

Provenance

The following attestation bundles were made for thermal_face_alignment-1.0.1a1-py3-none-any.whl:

Publisher: pypi-release.yml on openscivision/thermal-face-alignment

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page