We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main
I'm using open3d.visualization.rendering.OffscreenRenderer and set the intrinsic and extrinsic parameters using this method.
open3d.visualization.rendering.OffscreenRenderer
setup_camera(self: open3d.visualization.rendering.OffscreenRenderer, intrinsics: open3d.camera.PinholeCameraIntrinsic, extrinsic_matrix: numpy.ndarray[numpy.float64[4, 4]]) -> None
After using this method, the near_clip and far_clip were set to 0.1 and 1.0 respectively.
near_clip
far_clip
0.1
1.0
So some geometries located at far distance were not rendered.
Is there any way to set the far_clip value without modifying the previously set intrinsic and extrinsic parameters?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
main
branch).My Question
I'm using
open3d.visualization.rendering.OffscreenRenderer
and set the intrinsic and extrinsic parameters using this method.After using this method, the
near_clip
andfar_clip
were set to0.1
and1.0
respectively.So some geometries located at far distance were not rendered.
Is there any way to set the
far_clip
value without modifying the previously set intrinsic and extrinsic parameters?The text was updated successfully, but these errors were encountered: