Spaces:
Runtime error
Runtime error
Lambang
commited on
Commit
·
b0aaa11
1
Parent(s):
3e26ad3
dad
Browse files
main.py
CHANGED
@@ -102,7 +102,7 @@ async def upload_file(picture: UploadFile):
|
|
102 |
os.makedirs(UPLOAD_FOLDER, exist_ok=True)
|
103 |
file_path = os.path.join(UPLOAD_FOLDER, (picture.filename))
|
104 |
|
105 |
-
cv2.imwrite("./static/test_upload.jpg",
|
106 |
|
107 |
with open(file_path, 'wb') as f:
|
108 |
f.write(picture.file.read())
|
|
|
102 |
os.makedirs(UPLOAD_FOLDER, exist_ok=True)
|
103 |
file_path = os.path.join(UPLOAD_FOLDER, (picture.filename))
|
104 |
|
105 |
+
cv2.imwrite("./static/test_upload.jpg", file_path)
|
106 |
|
107 |
with open(file_path, 'wb') as f:
|
108 |
f.write(picture.file.read())
|