Skip to content

Commit c53a61d

Browse files
Updates to perception documentation (#249)
1 parent 4354548 commit c53a61d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

com.unity.perception/Documentation~/PerceptionCamera.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,7 @@ The RenderedObjectInfoLabeler records a list of all objects visible in the Camer
7979

8080
### KeypointLabeler
8181

82-
The keypoint labeler captures keypoints of a labeled gameobject. The typical use of this labeler is capturing human pose
83-
estimation data. The labeler uses a [keypoint template](#KeypointTemplate) which defines the keypoints to capture for the
84-
model and the skeletal connections between those keypoints. The positions of the keypoints are recorded in pixel coordinates
85-
and saved to the captures json file.
82+
The keypoint labeler captures keypoints of a labeled gameobject. The typical use of this labeler is capturing human pose estimation data. The labeler uses a [keypoint template](#KeypointTemplate) which defines the keypoints to capture for the model and the skeletal connections between those keypoints. The positions of the keypoints are recorded in pixel coordinates. Each keypoint has a state value: 0 - the keypoint either does not exist or is outside of the image's bounds, 1 - the keypoint exists and is inside of the image's bounds but cannot be seen because it is occluded by another object, and 2 - the keypoint exists and is visible.
8683

8784
```
8885
keypoints {
@@ -95,7 +92,7 @@ keypoints {
9592
index: <int> -- Index of keypoint in template
9693
x: <float> -- X pixel coordinate of keypoint
9794
y: <float> -- Y pixel coordinate of keypoint
98-
state: <int> -- 0: keypoint does not exist, 1 keypoint exists
95+
state: <int> -- 0: keypoint does not exist, 1: keypoint exists but is not visible, 2: keypoint exists and is visible
9996
}, ...
10097
]
10198
}

0 commit comments

Comments
 (0)