Lambang commited on
Commit
b0aaa11
·
1 Parent(s): 3e26ad3
Files changed (1) hide show
  1. main.py +1 -1
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", filepath)
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())