adpro commited on
Commit
a1a4c08
·
verified ·
1 Parent(s): 6549536

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -11,15 +11,11 @@ import uvicorn
11
 
12
  app = FastAPI()
13
 
14
- # 🟢 Tải mô hình MiDaS từ PyTorch Hub
15
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
16
- model = torch.hub.load("intel-isl/MiDaS", "MiDaS_small").to(device) # 🟢 Dùng phiên bản nhẹ MiDaS_small
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 MiDaS
34
- flipped_image_tensor = transform(flipped_image).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 MiDaS
40
  with torch.no_grad():
41
- depth_map = model(flipped_image_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"⏳ MiDaS 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()
 
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()