Upload external/MV-Adapter/mvadapter/utils/mesh_utils/__init__.py with huggingface_hub
Browse files
external/MV-Adapter/mvadapter/utils/mesh_utils/__init__.py
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from .camera import (
|
| 2 |
+
Camera,
|
| 3 |
+
get_c2w,
|
| 4 |
+
get_camera,
|
| 5 |
+
get_orthogonal_camera,
|
| 6 |
+
get_orthogonal_projection_matrix,
|
| 7 |
+
get_projection_matrix,
|
| 8 |
+
)
|
| 9 |
+
from .mesh import TexturedMesh, load_mesh, replace_mesh_texture_and_save
|
| 10 |
+
from .projection import CameraProjection, CameraProjectionOutput
|
| 11 |
+
from .render import (
|
| 12 |
+
DepthControlNetNormalization,
|
| 13 |
+
DepthNormalizationStrategy,
|
| 14 |
+
NVDiffRastContextWrapper,
|
| 15 |
+
RenderOutput,
|
| 16 |
+
SimpleNormalization,
|
| 17 |
+
Zero123PlusPlusNormalization,
|
| 18 |
+
render,
|
| 19 |
+
)
|
| 20 |
+
from .smart_paint import SmartPainter
|