Regarding 3D bounding box visualisation in non blocking point cloud sequences #6189
ParvezAlam123
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I have written code for 3D bounding box visualisation as follows:
class NonBlockVisualizer:
def init(self, point_size=1, background_color=[0, 0, 0]):
self.__visualizer = o3d.visualization.Visualizer()
self.__visualizer.create_window()
opt = self.__visualizer.get_render_option()
opt.background_color = np.asarray(background_color)
opt = self.__visualizer.get_render_option()
opt.point_size = point_size
Can anyone give me better code, in the above code point cloud sequence is going one place to another not stable, ?
Beta Was this translation helpful? Give feedback.
All reactions