This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tempfile | |
import gradio as gr | |
import numpy as np | |
import torch | |
from PIL import Image | |
import trimesh | |
from huggingface_hub import hf_hub_download | |
from depth_anything_v2.dpt import DepthAnythingV2 | |
from pygltflib import GLTF2, Node, Camera, Perspective, Scene |
OlderNewer