Update app.py
Browse files
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()
|
|
|
|
|
22 |
image = Image.open(io.BytesIO(image_bytes)).convert("RGB")
|
23 |
-
print("
|
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()}
|
38 |
-
|
39 |
-
except
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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)
|