adpro commited on
Commit
3f318c7
·
verified ·
1 Parent(s): 882be65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
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