adpro commited on
Commit
b59c16a
·
verified ·
1 Parent(s): 49ff6ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -5
app.py CHANGED
@@ -18,9 +18,11 @@ transform = T.Compose([T.Resize((256, 256)), T.ToTensor(),
18
  @app.post("/upload/")
19
  async def upload_image(file: UploadFile = File(...)):
20
  try:
21
- image_bytes = await file.read() # ✔️ Đọc ảnh nhị phân
 
 
22
  image = Image.open(io.BytesIO(image_bytes)).convert("RGB")
23
- print("📷 Ảnh nhận được, kích thước:", image.size)
24
 
25
  # Chuyển đổi ảnh sang tensor
26
  img_tensor = transform(image).unsqueeze(0)
@@ -34,6 +36,12 @@ async def upload_image(file: UploadFile = File(...)):
34
  _, buffer = cv2.imencode(".jpg", depth_resized)
35
  print("✅ Depth Map đã được tạo!")
36
 
37
- return {"depth_map": buffer.tobytes()} # ✔️ Gửi ảnh dạng nhị phân
38
-
39
- except Excep
 
 
 
 
 
 
 
18
  @app.post("/upload/")
19
  async def upload_image(file: UploadFile = File(...)):
20
  try:
21
+ image_bytes = await file.read()
22
+ print(f"📷 Nhận ảnh ({len(image_bytes)} bytes)")
23
+
24
  image = Image.open(io.BytesIO(image_bytes)).convert("RGB")
25
+ print(" Ảnh mở thành công!")
26
 
27
  # Chuyển đổi ảnh sang tensor
28
  img_tensor = transform(image).unsqueeze(0)
 
36
  _, buffer = cv2.imencode(".jpg", depth_resized)
37
  print("✅ Depth Map đã được tạo!")
38
 
39
+ return {"depth_map": buffer.tobytes()}
40
+
41
+ except Exception as e:
42
+ print("❌ Lỗi xử lý ảnh:", str(e))
43
+ return {"error": str(e)}
44
+
45
+ if __name__ == "__main__":
46
+ import uvicorn
47
+ uvicorn.run(app, host="0.0.0.0", port=7860)