Spaces:
Sleeping
Sleeping
zhenghan.qiu commited on
Commit ·
f2506d5
1
Parent(s): 1457dfe
add requirement.txt
Browse files- app.py +0 -12
- requirements.txt +6 -6
app.py
CHANGED
|
@@ -4,20 +4,8 @@ import matplotlib
|
|
| 4 |
import numpy as np
|
| 5 |
import os
|
| 6 |
import time
|
| 7 |
-
from PIL import Image
|
| 8 |
-
import torch
|
| 9 |
-
import torch.nn.functional as F
|
| 10 |
-
import open3d as o3d
|
| 11 |
-
import trimesh
|
| 12 |
-
import tempfile
|
| 13 |
-
import shutil
|
| 14 |
-
from pathlib import Path
|
| 15 |
-
from concurrent.futures import ThreadPoolExecutor
|
| 16 |
-
from gradio_imageslider import ImageSlider
|
| 17 |
-
from huggingface_hub import hf_hub_download
|
| 18 |
import plotly.graph_objs as go
|
| 19 |
from plotly.subplots import make_subplots
|
| 20 |
-
from collections import deque
|
| 21 |
from scipy.ndimage import convolve
|
| 22 |
|
| 23 |
|
|
|
|
| 4 |
import numpy as np
|
| 5 |
import os
|
| 6 |
import time
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
import plotly.graph_objs as go
|
| 8 |
from plotly.subplots import make_subplots
|
|
|
|
| 9 |
from scipy.ndimage import convolve
|
| 10 |
|
| 11 |
|
requirements.txt
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
-
gradio
|
| 2 |
-
|
| 3 |
-
numpy
|
| 4 |
-
scipy
|
| 5 |
-
|
| 6 |
-
|
|
|
|
| 1 |
+
gradio>=4.0
|
| 2 |
+
opencv-python-headless>=4.8.0
|
| 3 |
+
numpy>=1.23
|
| 4 |
+
scipy>=1.9
|
| 5 |
+
matplotlib>=3.6
|
| 6 |
+
plotly>=5.15
|