Skip to content

Commit

Permalink
fixed arguments in example notebooks (#6410)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomole444 authored Oct 24, 2023
1 parent 1cbf704 commit 881ae76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/jupyter/geometry/rgbd_image.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
" o3d.camera.PinholeCameraIntrinsicParameters.PrimeSenseDefault))\n",
"# Flip it, otherwise the pointcloud will be upside down\n",
"pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])\n",
"o3d.visualization.draw_geometries([pcd], zoom=0.5)"
"o3d.visualization.draw_geometries([pcd])"
]
},
{
Expand Down Expand Up @@ -160,7 +160,7 @@
" o3d.camera.PinholeCameraIntrinsicParameters.PrimeSenseDefault))\n",
"# Flip it, otherwise the pointcloud will be upside down\n",
"pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])\n",
"o3d.visualization.draw_geometries([pcd], zoom=0.5)"
"o3d.visualization.draw_geometries([pcd])"
]
},
{
Expand Down Expand Up @@ -243,7 +243,7 @@
" o3d.camera.PinholeCameraIntrinsicParameters.PrimeSenseDefault))\n",
"# Flip it, otherwise the pointcloud will be upside down\n",
"pcd.transform([[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]])\n",
"o3d.visualization.draw_geometries([pcd], zoom=0.5)"
"o3d.visualization.draw_geometries([pcd])"
]
},
{
Expand Down

0 comments on commit 881ae76

Please sign in to comment.