File size: 292 Bytes
dadf189 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | from __future__ import annotations
from typing import TypedDict
import torch
class FingerprintSample(TypedDict):
"""Canonical sample format for SIFQ pipelines."""
image: torch.Tensor
identity_id: str
finger_id: str
sensor_id: str
dataset: str
image_path: str
|