Sudipta Nayak commited on
Commit
c22c5c5
·
1 Parent(s): 8ff0421
Files changed (1) hide show
  1. app/main.py +1 -1
app/main.py CHANGED
@@ -53,7 +53,7 @@ async def detect_objects(request: Request, file: UploadFile):
53
  print('Detect end')
54
 
55
  original_image_path = str(input_file_path)
56
- output_image_path = str(output_file_path)+"/exp/"+{file.filename}
57
 
58
  print('original_image path :', original_image_path)
59
  print('output_image_path path :', output_image_path)
 
53
  print('Detect end')
54
 
55
  original_image_path = str(input_file_path)
56
+ output_image_path = f"{output_file_path}/exp/{file.filename}"
57
 
58
  print('original_image path :', original_image_path)
59
  print('output_image_path path :', output_image_path)