How do you position the camera in the scene and point it towards a specific location? Is this possible in Open3D?
To set the initial viewing position of a scene do the following:
ctr = vis.get_view_control()
parameters = o3d.io.read_pinhole_camera_parameters("ScreenCamera_xxxx.json")
ctr.convert_from_pinhole_camera_parameters(parameters)
Most helpful comment
To set the initial viewing position of a scene do the following: