Miguelpef commited on
Commit
a5fde92
·
verified ·
1 Parent(s): bd5dee7

Upload viewer.py

Browse files
Files changed (1) hide show
  1. viewer.py +21 -69
viewer.py CHANGED
@@ -1,8 +1,6 @@
1
  import gradio as gr
2
  import numpy as np
3
  import plotly.graph_objects as go
4
- from pyvox.models import Vox
5
- from pyvox.writer import VoxWriter
6
  from pyvox.custom_parser import CustomVoxParser
7
 
8
  def load_vox_model(file_path):
@@ -95,75 +93,42 @@ def create_3d_scatter(voxels, palette):
95
 
96
  return fig
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  def display_vox_model(vox_file):
99
  """Main function to display the voxel model"""
100
  try:
101
- # Load the vox model
102
  if not vox_file:
103
- fig = go.Figure()
104
- fig.add_annotation(
105
- text="Please upload a .vox file",
106
- xref="paper", yref="paper",
107
- x=0.5, y=0.5,
108
- showarrow=False,
109
- font=dict(size=16, color="white")
110
- )
111
- fig.update_layout(
112
- paper_bgcolor='rgba(0,0,0,1)',
113
- plot_bgcolor='rgba(0,0,0,1)'
114
- )
115
- return fig
116
 
117
  if not vox_file.name.endswith('.vox'):
118
- fig = go.Figure()
119
- fig.add_annotation(
120
- text="Please upload a valid .vox file",
121
- xref="paper", yref="paper",
122
- x=0.5, y=0.5,
123
- showarrow=False,
124
- font=dict(size=16, color="white")
125
- )
126
- fig.update_layout(
127
- paper_bgcolor='rgba(0,0,0,1)',
128
- plot_bgcolor='rgba(0,0,0,1)'
129
- )
130
- return fig
131
 
132
  print(f"Loading vox file: {vox_file.name}")
133
  voxels, palette = load_vox_model(vox_file.temp_path if hasattr(vox_file, 'temp_path') else vox_file.name)
134
 
135
  if voxels is None or palette is None:
136
- fig = go.Figure()
137
  error_message = "Error: Could not load voxel data from file\n"
138
  error_message += "This might be due to version incompatibility.\n"
139
  error_message += "The viewer currently supports .vox files up to version 200."
140
- fig.add_annotation(
141
- text=error_message,
142
- xref="paper", yref="paper",
143
- x=0.5, y=0.5,
144
- showarrow=False,
145
- font=dict(size=16, color="white")
146
- )
147
- fig.update_layout(
148
- paper_bgcolor='rgba(0,0,0,1)',
149
- plot_bgcolor='rgba(0,0,0,1)'
150
- )
151
- return fig
152
 
153
  if voxels.size == 0:
154
- fig = go.Figure()
155
- fig.add_annotation(
156
- text="Error: No voxels found in the model",
157
- xref="paper", yref="paper",
158
- x=0.5, y=0.5,
159
- showarrow=False,
160
- font=dict(size=16, color="white")
161
- )
162
- fig.update_layout(
163
- paper_bgcolor='rgba(0,0,0,1)',
164
- plot_bgcolor='rgba(0,0,0,1)'
165
- )
166
- return fig
167
 
168
  print(f"Model loaded successfully. Shape: {voxels.shape}, Palette size: {len(palette)}")
169
 
@@ -173,20 +138,7 @@ def display_vox_model(vox_file):
173
  return fig
174
  except Exception as e:
175
  print(f"Error details: {str(e)}")
176
- # Create an empty figure with error message
177
- fig = go.Figure()
178
- fig.add_annotation(
179
- text=f"Error loading model: {str(e)}",
180
- xref="paper", yref="paper",
181
- x=0.5, y=0.5,
182
- showarrow=False,
183
- font=dict(size=16, color="white")
184
- )
185
- fig.update_layout(
186
- paper_bgcolor='rgba(0,0,0,1)',
187
- plot_bgcolor='rgba(0,0,0,1)'
188
- )
189
- return fig
190
 
191
  # Create Gradio interface
192
  interface = gr.Interface(
 
1
  import gradio as gr
2
  import numpy as np
3
  import plotly.graph_objects as go
 
 
4
  from pyvox.custom_parser import CustomVoxParser
5
 
6
  def load_vox_model(file_path):
 
93
 
94
  return fig
95
 
96
+ def create_error_figure(message):
97
+ """Helper function to create error figures with consistent styling"""
98
+ fig = go.Figure()
99
+ fig.add_annotation(
100
+ text=message,
101
+ xref="paper", yref="paper",
102
+ x=0.5, y=0.5,
103
+ showarrow=False,
104
+ font=dict(size=16, color="white")
105
+ )
106
+ fig.update_layout(
107
+ paper_bgcolor='rgba(0,0,0,1)',
108
+ plot_bgcolor='rgba(0,0,0,1)'
109
+ )
110
+ return fig
111
+
112
  def display_vox_model(vox_file):
113
  """Main function to display the voxel model"""
114
  try:
 
115
  if not vox_file:
116
+ return create_error_figure("Please upload a .vox file")
 
 
 
 
 
 
 
 
 
 
 
 
117
 
118
  if not vox_file.name.endswith('.vox'):
119
+ return create_error_figure("Please upload a valid .vox file")
 
 
 
 
 
 
 
 
 
 
 
 
120
 
121
  print(f"Loading vox file: {vox_file.name}")
122
  voxels, palette = load_vox_model(vox_file.temp_path if hasattr(vox_file, 'temp_path') else vox_file.name)
123
 
124
  if voxels is None or palette is None:
 
125
  error_message = "Error: Could not load voxel data from file\n"
126
  error_message += "This might be due to version incompatibility.\n"
127
  error_message += "The viewer currently supports .vox files up to version 200."
128
+ return create_error_figure(error_message)
 
 
 
 
 
 
 
 
 
 
 
129
 
130
  if voxels.size == 0:
131
+ return create_error_figure("Error: No voxels found in the model")
 
 
 
 
 
 
 
 
 
 
 
 
132
 
133
  print(f"Model loaded successfully. Shape: {voxels.shape}, Palette size: {len(palette)}")
134
 
 
138
  return fig
139
  except Exception as e:
140
  print(f"Error details: {str(e)}")
141
+ return create_error_figure(f"Error loading model: {str(e)}")
 
 
 
 
 
 
 
 
 
 
 
 
 
142
 
143
  # Create Gradio interface
144
  interface = gr.Interface(