forked from Unity-Technologies/com.unity.perception
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.8.0 changes -> master (Unity-Technologies#273)
* Fix HDRP warnings on 2020.X (Unity-Technologies#260) * Fix HDRP warnings on 2020.2 * Updating changelog * Fixing HDRP version expression on 2019.4 * Fix keypoint issues (Unity-Technologies#259) * Fixing two bugs in KeypointLabeler: AISV-1254 - Some keypoints fall outside of the image bounds AISV-1257 - Partially visible characters with no visible keypoints are not reported * Adding JointLabelEditor with message about Labeling requirement * Reorganizing keypoint docs and elaborating on setup requirements. * Updating PerceptionCamera.md * Fixing issues on 2020.2 and failing test * Add object filtering modes to keypoint labeler * Updating docs for object filtering * Adding link to tutorial * Moving KeypointLabeler.md to proper directory * Update TUTORIAL.md * Updating capitalization Co-authored-by: Mohsen K <[email protected]> * Apply doc suggestions Co-authored-by: Mohsen K <[email protected]> * Update PerceptionCamera.md based on feedback * Update CHANGELOG.md Co-authored-by: Mohsen K <[email protected]> * Merge master to 0.8.0 (Unity-Technologies#265) * addressed feedback - new test for keypoint labeler - added ClearMaterialProperties method to IGroundTruthGenerator - Other fixes * docs clarification * Update CHANGELOG.md * added missing interface method implementation for HDRP * Amending dataset schema to describe correct coordinate system (Unity-Technologies#255) The summary for the 3d bounding box states the coordinates are from the sensor's reference frame, but the string for the translational component says it's global. I *think* this is just a typo in the doc, so correcting the description to match the summary for this type of entry. * Adding supported version badges (Unity-Technologies#256) * Cloud rendering support (Unity-Technologies#227) * Adding support for cloud rendering in the run simulation window * minor fixes * minor update * Update BoundingBox3DLabeler.cs * Update BoundingBox3DLabeler.cs * inner mesh scaling and disabled renderes * A fix that prevents normal sampler returning values outside of min max (Unity-Technologies#258) * Update pull_request_template.md (Unity-Technologies#257) * Update com.unity.perception/CHANGELOG.md * Increasing color variety in instance segmentation. (Unity-Technologies#261) * Increasing color variety in instance segmentation. * Fixing duplicated color issues in InstanceIdToColorMapping introduced after expanding range. * Using other constants in constant for cleanliness Co-authored-by: Mohsen Kamalzadeh <> Co-authored-by: Wesley Smith <[email protected]> Co-authored-by: Mohsen K <[email protected]> Co-authored-by: Devin Miller (Unity) <[email protected]> Co-authored-by: PriyeshWani <[email protected]> Co-authored-by: Steve Borkman <[email protected]> * fixed bracket spacing in KeypointLabeler * Add 3dbb tests (Unity-Technologies#267) * Adding and updating 3d bb tests. * Adding more BB3D tests * Adding more tests for camera transforms and fixing labeler. * Added tooltips to sample randomizers * Fix warnings caused by animation randomizer running on disabled GameObjects (Unity-Technologies#268) * Updating packge change log and version Co-authored-by: Mohsen K <[email protected]> Co-authored-by: Wesley Smith <[email protected]> Co-authored-by: Devin Miller (Unity) <[email protected]> Co-authored-by: PriyeshWani <[email protected]> Co-authored-by: Steve Borkman <[email protected]> Co-authored-by: sleal-unity <[email protected]> Co-authored-by: Mohsen Kamalzadeh <>
- Loading branch information
1 parent
c4de1b7
commit 582516e
Showing
27 changed files
with
792 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
91 changes: 91 additions & 0 deletions
91
com.unity.perception/Documentation~/GroundTruth/KeypointLabeler.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
# Keypoint Labeler | ||
|
||
The Keypoint Labeler captures the screen locations of specific points on labeled GameObjects. The typical use of this Labeler is capturing human pose estimation data, but it can be used to capture points on any kind of object. 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. | ||
|
||
## Data Format | ||
The keypoints captured each frame are in the following format: | ||
``` | ||
keypoints { | ||
label_id: <int> -- Integer identifier of the label | ||
instance_id: <str> -- UUID of the instance. | ||
template_guid: <str> -- UUID of the keypoint template | ||
pose: <str> -- Current pose | ||
keypoints [ -- Array of keypoint data, one entry for each keypoint defined in associated template file. | ||
{ | ||
index: <int> -- Index of keypoint in template | ||
x: <float> -- X pixel coordinate of keypoint | ||
y: <float> -- Y pixel coordinate of keypoint | ||
state: <int> -- Visibility state | ||
}, ... | ||
] | ||
} | ||
``` | ||
|
||
The `state` entry has three possible values: | ||
* 0 - the keypoint either does not exist or is outside of the image's bounds | ||
* 1 - the keypoint exists inside of the image bounds but cannot be seen because the object is not visible at its location in the image | ||
* 2 - the keypoint exists and the object is visible at its location | ||
|
||
The annotation definition, captured by the Keypoint Labeler once in each dataset, describes points being captured and their skeletal connections. These are defined by the [Keypoint Template](#KeypointTemplate). | ||
``` | ||
annotation_definition.spec { | ||
template_id: <str> -- The UUID of the template | ||
template_name: <str> -- Human readable name of the template | ||
key_points [ -- Array of joints defined in this template | ||
{ | ||
label: <str> -- The label of the joint | ||
index: <int> -- The index of the joint | ||
}, ... | ||
] | ||
skeleton [ -- Array of skeletal connections (which joints have connections between one another) defined in this template | ||
{ | ||
joint1: <int> -- The first joint of the connection | ||
joint2: <int> -- The second joint of the connection | ||
}, ... | ||
] | ||
} | ||
``` | ||
|
||
## Setup | ||
The Keypoint Labeler captures keypoints each frame from each object in the scene that meets the following conditions: | ||
|
||
* The object or its children are at least partially visible in the frame | ||
* The _Object Filter_ option on the Keypoint Labeler can be used to also include fully occluded or off-screen objects | ||
* The root object has a `Labeling` component | ||
* The object matches at least one entry in the Keypoint Template by either: | ||
* Containing an Animator with a [humanoid avatar](https://docs.unity3d.com/Manual/ConfiguringtheAvatar.html) whose rig matches a keypoint OR | ||
* Containing children with Joint Label components whose labels match keypoints | ||
|
||
For a tutorial on setting up your project for keypoint labeling, see the [Human Pose Labeling and Randomization Tutorial](../HPTutorial/TUTORIAL.md). | ||
|
||
## Keypoint Template | ||
|
||
Keypoint Templates are used to define the keypoints and skeletal connections captured by the Keypoint Labeler. The Keypoint Template takes advantage of Unity's humanoid animation rig, and allows the user to automatically associate template keypoints to animation rig joints. Additionally, the user can choose to ignore the rigged points, or add points not defined in the rig. | ||
|
||
A [COCO](https://cocodataset.org/#home) Keypoint Template is included in the Perception package. | ||
|
||
### Editor | ||
|
||
The Keypoint Template editor allows the user to create/modify a Keypoint Template. The editor consists of the header information, the keypoint array, and the skeleton array. | ||
|
||
 | ||
<br/>_Header section of the keypoint template_ | ||
|
||
In the header section, a user can change the name of the template and supply textures that they would like to use for the keypoint visualization. | ||
|
||
 | ||
<br/>_Keypoint section of the keypoint template_ | ||
|
||
The keypoint section allows the user to create/edit keypoints and associate them with Unity animation rig points. Each keypoint record | ||
has 4 fields: label (the name of the keypoint), Associate to Rig (a boolean value which, if true, automatically maps the keypoint to | ||
the GameObject defined by the rig), Rig Label (only needed if Associate To Rig is true, defines which rig component to associate with | ||
the keypoint), and Color (RGB color value of the keypoint in the visualization). | ||
|
||
 | ||
<br/>_Skeleton section of the keypoint template_ | ||
|
||
The skeleton section allows the user to create connections between joints, basically defining the skeleton of a labeled object. | ||
|
||
#### Animation Pose Label | ||
|
||
This file is used to define timestamps in an animation to a pose label. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
com.unity.perception/Editor/GroundTruth/JointLabelEditor.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System.Linq; | ||
using UnityEngine; | ||
using UnityEngine.Perception.GroundTruth; | ||
|
||
namespace UnityEditor.Perception.GroundTruth | ||
{ | ||
[CustomEditor(typeof(JointLabel))] | ||
public class JointLabelEditor : Editor | ||
{ | ||
public override void OnInspectorGUI() | ||
{ | ||
base.OnInspectorGUI(); | ||
#if UNITY_2020_1_OR_NEWER | ||
//GetComponentInParent<T>(bool includeInactive) only exists on 2020.1 and later | ||
if (targets.Any(t => ((Component)t).gameObject.GetComponentInParent<Labeling>(true) == null)) | ||
#else | ||
if (targets.Any(t => ((Component)t).GetComponentInParent<Labeling>() == null)) | ||
#endif | ||
EditorGUILayout.HelpBox("No Labeling component detected on parents. Keypoint labeling requires a Labeling component on the root of the object.", MessageType.Info); | ||
} | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
com.unity.perception/Editor/GroundTruth/JointLabelEditor.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.