poll_events()
是open3d.visualization.VisualizerWithKeyCallback
中的一个函数,用于处理GUI事件(鼠标、键盘操作等),并进行交互式视图的更新。
poll_events()
该函数无需参数。
该函数无返回值。
import open3d.visualization as vis
# 创建VisualizerWithKeyCallback对象
vis_withcb = vis.VisualizerWithKeyCallback()
# 指定回调函数
def callback_func(vis):
action = vis.get_key_action()
if action == vis.KEY_DOWN:
print("Key Down")
# 绑定回调函数
vis_withcb.register_key_callback(32, callback_func)
# 开启文本信息输出
vis_withcb.create_window(window_name='Example', width=512, height=512)
# 事件循环
while not vis_withcb.was_realized():
vis_withcb.poll_events()
# 更新视图
vis_withcb.update_renderer()