class
Pose
extends
TransformsPresetPose(crop_size: int, resize_size: int = 256, mean: tuple[float, ...] | None = None, std: tuple[float, ...] | None = None, interpolation: str | Interpolation = Interpolation.BILINEAR)Keypoint / pose-estimation preset.
Pipeline: SmallestMaxSize(resize_size) → CenterCrop(crop_size)
→ Normalize. Keypoint coordinates ride along through every
geometric stage's _apply_keypoints hook; extra columns
(visibility / score / angle) pass through unchanged.
Parameters
crop_sizeintSquare crop fed to the model.
resize_sizeint= 256Shorter-side length before cropping.
meantuple of float= NonePer-channel normalization stats; default ImageNet.
stdtuple of float= NonePer-channel normalization stats; default ImageNet.
No description.