Spaces:
mashroo
/
Runtime error

YoussefAnso commited on
Commit
d63ad23
·
1 Parent(s): 0981827

Update imports in inference.py to include numpy, PIL, and mesh utilities for enhanced functionality and improved mesh processing.

Browse files
Files changed (1) hide show
  1. inference.py +7 -5
inference.py CHANGED
@@ -1,10 +1,12 @@
1
- from kiui.mesh_utils import clean_mesh
2
- import trimesh
3
- import zipfile
4
  import tempfile
5
  import os
6
- import nvdiffrast.torch as dr
7
- import torch
 
 
8
  from util.renderer import Renderer
9
 
10
 
 
1
+ import numpy as np
2
+ import torch
3
+ import time
4
  import tempfile
5
  import os
6
+ from PIL import Image
7
+ import trimesh
8
+ from util.utils import get_tri
9
+ from mesh import Mesh
10
  from util.renderer import Renderer
11
 
12