Skip to content

Commit

Permalink
docs(geometry): fix the error in visible status of Keypoint2d
Browse files Browse the repository at this point in the history
PR Closed: #963
  • Loading branch information
Lee-000 committed Aug 23, 2021
1 parent a7365ec commit d2f9088
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tensorbay/geometry/keypoint.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ class Keypoint2D(Vector2D):
Visible status can be "BINARY" or "TERNARY":
+---------------+---------+-----------+-----------+
| Visual Status | v = 0 | v = 1 | v = 2 |
+===============+=========+===========+===========+
| BINARY | visible | invisible | |
+---------------+---------+-----------+-----------+
| TERNARY | visible | occluded | invisible |
+---------------+---------+-----------+-----------+
+---------------+-----------+-----------+---------+
| Visual Status | v = 0 | v = 1 | v = 2 |
+===============+===========+===========+=========+
| BINARY | invisible | visible | |
+---------------+-----------+-----------+---------+
| TERNARY | invisible | occluded | visible |
+---------------+-----------+-----------+---------+
Examples:
*Initialization Method 1:* Init from coordinates of x, y.
Expand Down

0 comments on commit d2f9088

Please sign in to comment.