1. KeypointDetection
1.1. CharPointDetection
识别字符中的俩个关键点。
1.2. Facial-keypoints-detection
用于检测人脸的68个关键点示例。
1.3. Hourglass-facekeypoints
使用基于论文Hourglass 的模型实现人体关键点检测。
1.4. Realtime-Action-Recognition
containing:
- boxes (Tensor[N, 4]
): the ground-truth boxes in[x0, y0, x1, y1]
format, with values
between0
andH
and0
andW
- labels (Tensor[N]
): the class label for each ground-truth box
- keypoints (Tensor[N, K, 3]
): theK
keypoints location for each of theN
instances, in the
format[x, y, visibility]
, wherevisibility=0
means that the keypoint is not visible.The model returns a
Dict[Tensor]
during training, containing the classification and regression<