adpro commited on
Commit
2d5e944
·
verified ·
1 Parent(s): 1bb3687

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -6
app.py CHANGED
@@ -9,6 +9,17 @@ model = FastDepth(pretrained=True)
9
  model.eval()
10
  app = FastAPI()
11
 
 
 
 
 
 
 
 
 
 
 
 
12
 
13
  def analyzepath(image):
14
  depth_map = model(image).squeeze().cpu().numpy()
@@ -16,12 +27,19 @@ def analyzepath(image):
16
  @app.post("/analyze_path/")
17
  async def analyze_path(file: UploadFile = File(...)):
18
  image_bytes = await file.read()
19
- image = Image.open(io.BytesIO(image_bytes)).convert("L") # Chuyển ảnh sang grayscale
20
- mImage = cv2.flip(image, -1)
21
- #depth_map = np.array(image)
22
- depth_map = analyzepath(mImage)
23
-
24
- # Phân tích ảnh Depth Map
 
 
 
 
 
 
 
25
  command = detect_path(flipped_depth_map)
26
 
27
  return {"command": command}
 
9
  model.eval()
10
  app = FastAPI()
11
 
12
+ import os
13
+ if not os.path.exists("fastdepth"):
14
+ os.system("git clone https://github.com/dwofk/fast-depth.git fastdepth")
15
+
16
+ from fastdepth import FastDepth # Import sau khi clone
17
+
18
+ app = FastAPI()
19
+
20
+ # 🟢 Load mô hình FastDepth
21
+ model = FastDepth(pretrained=True)
22
+ model.eval()
23
 
24
  def analyzepath(image):
25
  depth_map = model(image).squeeze().cpu().numpy()
 
27
  @app.post("/analyze_path/")
28
  async def analyze_path(file: UploadFile = File(...)):
29
  image_bytes = await file.read()
30
+ image = Image.open(io.BytesIO(image_bytes)).convert("L")
31
+ depth_map = np.array(image)
32
+
33
+ # 🟢 Lật ảnh (nếu cần)
34
+ flipped_depth_map = cv2.flip(depth_map, -1)
35
+ transform = torchvision.transforms.Compose([
36
+ torchvision.transforms.Resize((224, 224)),
37
+ torchvision.transforms.ToTensor(),
38
+ ])
39
+ img_tensor = transform(image).unsqueeze(0).to(device)
40
+ with torch.no_grad():
41
+ depth_map = model(img_tensor).squeeze().cpu().numpy()
42
+ # 🟢 Phân tích đường đi
43
  command = detect_path(flipped_depth_map)
44
 
45
  return {"command": command}