-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathmain.py
328 lines (276 loc) · 12 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
import glfw
import OpenGL.GL as gl
from imgui.integrations.glfw import GlfwRenderer
import imgui
import numpy as np
import util
import imageio
import util_gau
import tkinter as tk
from tkinter import filedialog
import os
import sys
import argparse
from renderer_ogl import OpenGLRenderer, GaussianRenderBase
# Add the directory containing main.py to the Python path
dir_path = os.path.dirname(os.path.realpath(__file__))
sys.path.append(dir_path)
# Change the current working directory to the script's directory
os.chdir(os.path.dirname(os.path.abspath(__file__)))
g_camera = util.Camera(720, 1280)
BACKEND_OGL=0
BACKEND_CUDA=1
g_renderer_list = [
None, # ogl
]
g_renderer_idx = BACKEND_OGL
g_renderer: GaussianRenderBase = g_renderer_list[g_renderer_idx]
g_scale_modifier = 1.
g_auto_sort = False
g_show_control_win = True
g_show_help_win = True
g_show_camera_win = False
g_render_mode_tables = ["Gaussian Ball", "Flat Ball", "Billboard", "Depth", "SH:0", "SH:0~1", "SH:0~2", "SH:0~3 (default)"]
g_render_mode = 7
def impl_glfw_init():
window_name = "NeUVF editor"
if not glfw.init():
print("Could not initialize OpenGL context")
exit(1)
glfw.window_hint(glfw.CONTEXT_VERSION_MAJOR, 4)
glfw.window_hint(glfw.CONTEXT_VERSION_MINOR, 3)
glfw.window_hint(glfw.OPENGL_PROFILE, glfw.OPENGL_CORE_PROFILE)
# glfw.window_hint(glfw.OPENGL_FORWARD_COMPAT, gl.GL_TRUE)
# Create a windowed mode window and its OpenGL context
global window
window = glfw.create_window(
g_camera.w, g_camera.h, window_name, None, None
)
glfw.make_context_current(window)
glfw.swap_interval(0)
# glfw.set_input_mode(window, glfw.CURSOR, glfw.CURSOR_NORMAL);
if not window:
glfw.terminate()
print("Could not initialize Window")
exit(1)
return window
def cursor_pos_callback(window, xpos, ypos):
if imgui.get_io().want_capture_mouse:
g_camera.is_leftmouse_pressed = False
g_camera.is_rightmouse_pressed = False
g_camera.process_mouse(xpos, ypos)
def mouse_button_callback(window, button, action, mod):
if imgui.get_io().want_capture_mouse:
return
pressed = action == glfw.PRESS
g_camera.is_leftmouse_pressed = (button == glfw.MOUSE_BUTTON_LEFT and pressed)
g_camera.is_rightmouse_pressed = (button == glfw.MOUSE_BUTTON_RIGHT and pressed)
def wheel_callback(window, dx, dy):
g_camera.process_wheel(dx, dy)
def key_callback(window, key, scancode, action, mods):
if action == glfw.REPEAT or action == glfw.PRESS:
if key == glfw.KEY_Q:
g_camera.process_roll_key(1)
elif key == glfw.KEY_E:
g_camera.process_roll_key(-1)
def update_camera_pose_lazy():
if g_camera.is_pose_dirty:
g_renderer.update_camera_pose(g_camera)
g_camera.is_pose_dirty = False
def update_camera_intrin_lazy():
if g_camera.is_intrin_dirty:
g_renderer.update_camera_intrin(g_camera)
g_camera.is_intrin_dirty = False
def update_activated_renderer_state(gaus: util_gau.GaussianData):
g_renderer.update_gaussian_data(gaus)
g_renderer.sort_and_update(g_camera)
g_renderer.set_scale_modifier(g_scale_modifier)
g_renderer.set_render_mod(g_render_mode - 3)
g_renderer.update_camera_pose(g_camera)
g_renderer.update_camera_intrin(g_camera)
g_renderer.set_render_reso(g_camera.w, g_camera.h)
def window_resize_callback(window, width, height):
gl.glViewport(0, 0, width, height)
g_camera.update_resolution(height, width)
g_renderer.set_render_reso(width, height)
def main():
global g_camera, g_renderer, g_renderer_list, g_renderer_idx, g_scale_modifier, g_auto_sort, \
g_show_control_win, g_show_help_win, g_show_camera_win, \
g_render_mode, g_render_mode_tables
imgui.create_context()
if args.hidpi:
imgui.get_io().font_global_scale = 1.5
window = impl_glfw_init()
impl = GlfwRenderer(window)
root = tk.Tk() # used for file dialog
root.withdraw()
glfw.set_cursor_pos_callback(window, cursor_pos_callback)
glfw.set_mouse_button_callback(window, mouse_button_callback)
glfw.set_scroll_callback(window, wheel_callback)
glfw.set_key_callback(window, key_callback)
glfw.set_window_size_callback(window, window_resize_callback)
# init renderer
g_renderer_list[BACKEND_OGL] = OpenGLRenderer(g_camera.w, g_camera.h)
try:
from renderer_cuda import CUDARenderer
g_renderer_list += [CUDARenderer(g_camera.w, g_camera.h)]
except ImportError:
g_renderer_idx = BACKEND_OGL
else:
g_renderer_idx = BACKEND_CUDA
g_renderer = g_renderer_list[g_renderer_idx]
# gaussian data
gaussians = util_gau.naive_gaussian()
update_activated_renderer_state(gaussians)
# settings
while not glfw.window_should_close(window):
glfw.poll_events()
impl.process_inputs()
imgui.new_frame()
gl.glClearColor(0, 0, 0, 1.0)
gl.glClear(gl.GL_COLOR_BUFFER_BIT)
update_camera_pose_lazy()
update_camera_intrin_lazy()
g_renderer.draw()
# imgui ui
if imgui.begin_main_menu_bar():
if imgui.begin_menu("Window", True):
clicked, g_show_control_win = imgui.menu_item(
"Show Control", None, g_show_control_win
)
clicked, g_show_help_win = imgui.menu_item(
"Show Help", None, g_show_help_win
)
clicked, g_show_camera_win = imgui.menu_item(
"Show Camera Control", None, g_show_camera_win
)
imgui.end_menu()
imgui.end_main_menu_bar()
if g_show_control_win:
if imgui.begin("Control", True):
# rendering backend
changed, g_renderer_idx = imgui.combo("backend", g_renderer_idx, ["ogl", "cuda"][:len(g_renderer_list)])
if changed:
g_renderer = g_renderer_list[g_renderer_idx]
update_activated_renderer_state(gaussians)
imgui.text(f"fps = {imgui.get_io().framerate:.1f}")
changed, g_renderer.reduce_updates = imgui.checkbox(
"reduce updates", g_renderer.reduce_updates,
)
imgui.text(f"# of Gaus = {len(gaussians)}")
if imgui.button(label='open ply'):
file_path = filedialog.askopenfilename(title="open ply",
initialdir="C:\\Users\\MSI_NB\\Downloads\\viewers",
filetypes=[('ply file', '.ply')]
)
if file_path:
try:
gaussians = util_gau.load_ply(file_path)
g_renderer.update_gaussian_data(gaussians)
g_renderer.sort_and_update(g_camera)
except RuntimeError as e:
pass
# camera fov
changed, g_camera.fovy = imgui.slider_float(
"fov", g_camera.fovy, 0.001, np.pi - 0.001, "fov = %.3f"
)
g_camera.is_intrin_dirty = changed
update_camera_intrin_lazy()
# scale modifier
changed, g_scale_modifier = imgui.slider_float(
"", g_scale_modifier, 0.1, 10, "scale modifier = %.3f"
)
imgui.same_line()
if imgui.button(label="reset"):
g_scale_modifier = 1.
changed = True
if changed:
g_renderer.set_scale_modifier(g_scale_modifier)
# render mode
changed, g_render_mode = imgui.combo("shading", g_render_mode, g_render_mode_tables)
if changed:
g_renderer.set_render_mod(g_render_mode - 4)
# sort button
if imgui.button(label='sort Gaussians'):
g_renderer.sort_and_update(g_camera)
imgui.same_line()
changed, g_auto_sort = imgui.checkbox(
"auto sort", g_auto_sort,
)
if g_auto_sort:
g_renderer.sort_and_update(g_camera)
if imgui.button(label='save image'):
width, height = glfw.get_framebuffer_size(window)
nrChannels = 3;
stride = nrChannels * width;
stride += (4 - stride % 4) if stride % 4 else 0
gl.glPixelStorei(gl.GL_PACK_ALIGNMENT, 4)
gl.glReadBuffer(gl.GL_FRONT)
bufferdata = gl.glReadPixels(0, 0, width, height, gl.GL_RGB, gl.GL_UNSIGNED_BYTE)
img = np.frombuffer(bufferdata, np.uint8, -1).reshape(height, width, 3)
imageio.imwrite("save.png", img[::-1])
# save intermediate information
# np.savez(
# "save.npz",
# gau_xyz=gaussians.xyz,
# gau_s=gaussians.scale,
# gau_rot=gaussians.rot,
# gau_c=gaussians.sh,
# gau_a=gaussians.opacity,
# viewmat=g_camera.get_view_matrix(),
# projmat=g_camera.get_project_matrix(),
# hfovxyfocal=g_camera.get_htanfovxy_focal()
# )
imgui.end()
if g_show_camera_win:
if imgui.button(label='rot 180'):
g_camera.flip_ground()
changed, g_camera.target_dist = imgui.slider_float(
"t", g_camera.target_dist, 1., 8., "target dist = %.3f"
)
if changed:
g_camera.update_target_distance()
changed, g_camera.rot_sensitivity = imgui.slider_float(
"r", g_camera.rot_sensitivity, 0.002, 0.1, "rotate speed = %.3f"
)
imgui.same_line()
if imgui.button(label="reset r"):
g_camera.rot_sensitivity = 0.02
changed, g_camera.trans_sensitivity = imgui.slider_float(
"m", g_camera.trans_sensitivity, 0.001, 0.03, "move speed = %.3f"
)
imgui.same_line()
if imgui.button(label="reset m"):
g_camera.trans_sensitivity = 0.01
changed, g_camera.zoom_sensitivity = imgui.slider_float(
"z", g_camera.zoom_sensitivity, 0.001, 0.05, "zoom speed = %.3f"
)
imgui.same_line()
if imgui.button(label="reset z"):
g_camera.zoom_sensitivity = 0.01
changed, g_camera.roll_sensitivity = imgui.slider_float(
"ro", g_camera.roll_sensitivity, 0.003, 0.1, "roll speed = %.3f"
)
imgui.same_line()
if imgui.button(label="reset ro"):
g_camera.roll_sensitivity = 0.03
if g_show_help_win:
imgui.begin("Help", True)
imgui.text("Open Gaussian Splatting PLY file \n by click 'open ply' button")
imgui.text("Use left click & move to rotate camera")
imgui.text("Use right click & move to translate camera")
imgui.text("Press Q/E to roll camera")
imgui.text("Use scroll to zoom in/out")
imgui.text("Use control panel to change setting")
imgui.end()
imgui.render()
impl.render(imgui.get_draw_data())
glfw.swap_buffers(window)
impl.shutdown()
glfw.terminate()
if __name__ == "__main__":
global args
parser = argparse.ArgumentParser(description="NeUVF editor with optional HiDPI support.")
parser.add_argument("--hidpi", action="store_true", help="Enable HiDPI scaling for the interface.")
args = parser.parse_args()
main()