Update app.py
Browse files
app.py
CHANGED
@@ -9,6 +9,7 @@ model = FastDepth(pretrained=True)
|
|
9 |
model.eval()
|
10 |
app = FastAPI()
|
11 |
|
|
|
12 |
def analyzepath(image):
|
13 |
depth_map = model(image).squeeze().cpu().numpy()
|
14 |
return detect_path(depth_map) # Xử lý đường đi nhanh hơn
|
|
|
9 |
model.eval()
|
10 |
app = FastAPI()
|
11 |
|
12 |
+
|
13 |
def analyzepath(image):
|
14 |
depth_map = model(image).squeeze().cpu().numpy()
|
15 |
return detect_path(depth_map) # Xử lý đường đi nhanh hơn
|