
Crops each box of a [BoundingBox] list from an Image and runs a Triton-served pose checkpoint per box, decoding heatmaps or SimCC into per-detection keypoints emitted as [[Landmark]].
Person pose where both detector and pose estimator are Triton-served, keeping the whole vision stage on one inference server.
Body-part routing where a YOLO detector supplies the boxes and keypoints feed a part locator for a downstream crop.
[BoundingBox] order, and an empty box list produces empty output. Coordinates are returned in input-image space, not box-local, rescaled back using the configured model input size and each box's geometry. On the flat [Landmark] arm only the single highest-scoring detection survives.simcc selects coordinate-classification decoding versus heatmap decoding; a value that disagrees with the served network's actual head silently produces wrong coordinates.output_keypoints must equal the network's keypoint count exactly, or the output tensor is truncated or over-read. Tensor names, shapes, normalization (mean, std, rescale_factor), color_model, and change_channel_order must match the served signature.Automated release