
YOLO face detector loaded from a mounted Ultralytics checkpoint (the model weights slot): takes an Image and emits boxes, boxes paired with landmarks, landmark lists, or parallel box/landmark arrays depending on the downstream connection. Use to find faces.
Face analysis: detected faces feed an attribute analyser for per-face properties on a stored image.
Live overlay: boxes are drawn back onto a video feed for monitoring.
Face crops: each detected box drives a crop that isolates the face for downstream handling.
model weights slot must hold exactly one Ultralytics YOLO face `.pt` checkpoint; zero or multiple `.pt` files fail to load, and a checkpoint with a different head shape produces nonsense boxes.([BoundingBox], [[Landmark]]) arm emits two index-aligned lists: box i describes the same face as landmark-list i, the same faces the paired arm carries.Image returns an empty result without invoking the model.threshold filters per-box confidence before non-maximum suppression, so lowering it surfaces weak faces but multiplies the overlap that iou then has to merge.model weights, device, or image_size at runtime has no effect and requires a redeploy.Automated release