Besimplestudio commited on
Commit
128db64
·
verified ·
1 Parent(s): 0db9a41

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -6,7 +6,7 @@ except ImportError:
6
  subprocess.check_call(["pip", "install", "opencv-python-headless"])
7
  import cv2
8
 
9
- from PIL import Image, ImageTk
10
  import numpy as np
11
  import gradio as gr
12
  import os
@@ -17,7 +17,7 @@ def convert_to_sketch(img, blur_strength, brightness, contrast):
17
  img = np.array(img)
18
 
19
  # Convert the image to grayscale
20
- img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
21
 
22
  # Invert the grayscale image
23
  img_inverted = cv2.bitwise_not(img_gray)
@@ -51,7 +51,7 @@ def sketch_interface(image, blur_strength, brightness, contrast):
51
  # Convert the input image to a sketch with adjustments
52
  sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
53
 
54
- # Ensure the output is a valid image (PIL Image)
55
  output_image = Image.fromarray(sketch)
56
 
57
  # Return the processed sketch image for display
@@ -61,14 +61,14 @@ def sketch_interface(image, blur_strength, brightness, contrast):
61
  interface = gr.Interface(
62
  fn=sketch_interface,
63
  inputs=[
64
- gr.Image(type="pil", label="Upload Image"),
65
  gr.Slider(1, 51, step=2, label="Blur Strength", value=21),
66
  gr.Slider(-100, 100, label="Brightness", value=0),
67
  gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
68
  ],
69
  outputs=[gr.Image(type="pil", label="Sketch Output")], # Output is now just the image
70
  title="Cartoon to Sketch Converter",
71
- description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
72
  )
73
 
74
  # Launch the Gradio app
 
6
  subprocess.check_call(["pip", "install", "opencv-python-headless"])
7
  import cv2
8
 
9
+ from PIL import Image
10
  import numpy as np
11
  import gradio as gr
12
  import os
 
17
  img = np.array(img)
18
 
19
  # Convert the image to grayscale
20
+ img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
21
 
22
  # Invert the grayscale image
23
  img_inverted = cv2.bitwise_not(img_gray)
 
51
  # Convert the input image to a sketch with adjustments
52
  sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
53
 
54
+ # Convert numpy array to PIL Image before returning
55
  output_image = Image.fromarray(sketch)
56
 
57
  # Return the processed sketch image for display
 
61
  interface = gr.Interface(
62
  fn=sketch_interface,
63
  inputs=[
64
+ gr.Image(type="pil", label="Upload Image", image_mode="RGB", shape=(256, 256)), # Support for various formats
65
  gr.Slider(1, 51, step=2, label="Blur Strength", value=21),
66
  gr.Slider(-100, 100, label="Brightness", value=0),
67
  gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
68
  ],
69
  outputs=[gr.Image(type="pil", label="Sketch Output")], # Output is now just the image
70
  title="Cartoon to Sketch Converter",
71
+ description="Upload an image (PNG, JPEG, or others) to convert it into a sketch. Adjust the blur strength, brightness, and contrast for different effects."
72
  )
73
 
74
  # Launch the Gradio app