curiouscurrent commited on
Commit
fe86db6
·
verified ·
1 Parent(s): fe2dc65

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -33,9 +33,10 @@ def detect_objects(image):
33
  # Get the path to the output image
34
  output_image_path = os.path.join(output_dir, "result", os.path.basename(input_image_path))
35
 
36
- # Return the output image for display as a PIL image
37
  if os.path.exists(output_image_path):
38
- return Image.open(output_image_path)
 
39
  else:
40
  return "Error: Output image not found."
41
 
@@ -43,7 +44,7 @@ def detect_objects(image):
43
  interface = gr.Interface(
44
  fn=detect_objects, # The function to call when an image is uploaded
45
  inputs=gr.Image(type="pil"), # Accept images as input
46
- outputs=gr.Image(type="pil"), # Return a PIL image for display
47
  title="YOLOv8 Object Detection",
48
  description="Upload an image of floating waste in water, and this app will detect it using YOLOv8."
49
  )
 
33
  # Get the path to the output image
34
  output_image_path = os.path.join(output_dir, "result", os.path.basename(input_image_path))
35
 
36
+ # Check if the image exists
37
  if os.path.exists(output_image_path):
38
+ # Return the image directly to Gradio
39
+ return output_image_path # Return file path for Gradio to display
40
  else:
41
  return "Error: Output image not found."
42
 
 
44
  interface = gr.Interface(
45
  fn=detect_objects, # The function to call when an image is uploaded
46
  inputs=gr.Image(type="pil"), # Accept images as input
47
+ outputs=gr.Image(type="filepath"), # Return image file path for display
48
  title="YOLOv8 Object Detection",
49
  description="Upload an image of floating waste in water, and this app will detect it using YOLOv8."
50
  )