Skip to content

Commit d71be2a

Browse files
authored
Update coordinate_conventions.md
1 parent e630c5e commit d71be2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/coordinate_conventions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ In this repo we would like to follow this simple convention for cartesian 3D fra
2222
But we currently have a more hybrid / mixed approach with accessing pixel data:
2323

2424
- <b>When doing 3D vision, we use the OpenCV "(u,v)" convention for pixel coordinates. This aligns with our
25-
cartesian coordinate system as follows in this diagram:
25+
cartesian coordinate system as follows in this diagram</b>:
2626

2727
<p align="center">
2828
<img src="./OpenCVcoordinates.png" width="450"/>
2929
</p>
3030

3131
- <b>All data stored as numpy arrays or torch tensors should be stored in row, column format</b>. This means
3232
that in order to access the correct pixel in this data, if using (u,v) coordinates, you should access the data
33-
as:
33+
as</b>:
3434

3535
```python
3636
pixel_at_u_v = data_tensor[v,u]

0 commit comments

Comments
 (0)