Update app.py
Browse files
app.py
CHANGED
@@ -50,7 +50,7 @@ async def analyze_path(file: UploadFile = File(...)):
|
|
50 |
start_detect_time = time.time()
|
51 |
command = detect_path(depth_map)
|
52 |
end_detect_time = time.time()
|
53 |
-
print(f"⏳ detect_path() xử lý trong {end_detect_time - start_detect_time:.4f} giây")
|
54 |
|
55 |
return {"command": command}
|
56 |
|
|
|
50 |
start_detect_time = time.time()
|
51 |
command = detect_path(depth_map)
|
52 |
end_detect_time = time.time()
|
53 |
+
print(f"⏳ detect_path() xử lý trong {end_detect_time - start_detect_time:.4f} giây Lệnh: {command}")
|
54 |
|
55 |
return {"command": command}
|
56 |
|