Update app.py
Browse files
app.py
CHANGED
@@ -11,15 +11,11 @@ import uvicorn
|
|
11 |
|
12 |
app = FastAPI()
|
13 |
|
14 |
-
# 🟢 Tải mô hình
|
15 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
16 |
-
model = torch.hub.load("
|
17 |
model.eval()
|
18 |
|
19 |
-
# 🟢 Load transform cho MiDaS
|
20 |
-
midas_transforms = torch.hub.load("intel-isl/MiDaS", "transforms")
|
21 |
-
transform = midas_transforms.small_transform # 🟢 Dùng transform phù hợp với MiDaS_small
|
22 |
-
|
23 |
@app.post("/analyze_path/")
|
24 |
async def analyze_path(file: UploadFile = File(...)):
|
25 |
# 🟢 Đọc file ảnh từ ESP32
|
@@ -30,21 +26,25 @@ async def analyze_path(file: UploadFile = File(...)):
|
|
30 |
image_np = np.array(image)
|
31 |
flipped_image = cv2.flip(image_np, -1)
|
32 |
|
33 |
-
# 🟢 Chuyển đổi ảnh thành tensor phù hợp với
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
|
36 |
# 🟢 Bắt đầu đo thời gian dự đoán Depth Map
|
37 |
start_time = time.time()
|
38 |
|
39 |
-
# 🟢 Dự đoán Depth Map với
|
40 |
with torch.no_grad():
|
41 |
-
depth_map = model(
|
42 |
depth_map = torch.nn.functional.interpolate(
|
43 |
depth_map.unsqueeze(1), size=(image_np.shape[0], image_np.shape[1]), mode="bicubic", align_corners=False
|
44 |
).squeeze().cpu().numpy()
|
45 |
|
46 |
end_time = time.time()
|
47 |
-
print(f"⏳
|
48 |
|
49 |
# 🟢 Đo thời gian xử lý đường đi
|
50 |
start_detect_time = time.time()
|
|
|
11 |
|
12 |
app = FastAPI()
|
13 |
|
14 |
+
# 🟢 Tải mô hình ZoeDepth-Tiny từ PyTorch Hub
|
15 |
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
|
16 |
+
model = torch.hub.load("isl-org/ZoeDepth", "ZoeD_NK_T", pretrained=True).to(device) # 🟢 Dùng ZoeDepth-Tiny
|
17 |
model.eval()
|
18 |
|
|
|
|
|
|
|
|
|
19 |
@app.post("/analyze_path/")
|
20 |
async def analyze_path(file: UploadFile = File(...)):
|
21 |
# 🟢 Đọc file ảnh từ ESP32
|
|
|
26 |
image_np = np.array(image)
|
27 |
flipped_image = cv2.flip(image_np, -1)
|
28 |
|
29 |
+
# 🟢 Chuyển đổi ảnh thành tensor phù hợp với ZoeDepth
|
30 |
+
transform = torchvision.transforms.Compose([
|
31 |
+
torchvision.transforms.Resize((256, 256)), # ZoeDepth cần resize ảnh nhỏ hơn
|
32 |
+
torchvision.transforms.ToTensor(),
|
33 |
+
])
|
34 |
+
img_tensor = transform(flipped_image).unsqueeze(0).to(device)
|
35 |
|
36 |
# 🟢 Bắt đầu đo thời gian dự đoán Depth Map
|
37 |
start_time = time.time()
|
38 |
|
39 |
+
# 🟢 Dự đoán Depth Map với ZoeDepth
|
40 |
with torch.no_grad():
|
41 |
+
depth_map = model.infer(img_tensor)
|
42 |
depth_map = torch.nn.functional.interpolate(
|
43 |
depth_map.unsqueeze(1), size=(image_np.shape[0], image_np.shape[1]), mode="bicubic", align_corners=False
|
44 |
).squeeze().cpu().numpy()
|
45 |
|
46 |
end_time = time.time()
|
47 |
+
print(f"⏳ ZoeDepth xử lý trong {end_time - start_time:.4f} giây")
|
48 |
|
49 |
# 🟢 Đo thời gian xử lý đường đi
|
50 |
start_detect_time = time.time()
|