Besimplestudio commited on
Commit
6c92a72
·
verified ·
1 Parent(s): ef7d95c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +15 -5
app.py CHANGED
@@ -1,9 +1,16 @@
1
- import cv2
2
- from PIL import Image
 
 
 
 
 
 
 
3
  import numpy as np
4
  import gradio as gr
5
 
6
- # Convert image to sketch function
7
  def convert_to_sketch(img, blur_strength):
8
  img = np.array(img) # Convert PIL Image to numpy array
9
  img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
@@ -22,8 +29,11 @@ def sketch_interface(image, blur_strength):
22
  # Create Gradio interface
23
  interface = gr.Interface(
24
  fn=sketch_interface,
25
- inputs=[gr.Image(type="pil"), gr.Slider(1, 51, step=2, label="Blur Strength", value=21)],
26
- outputs=gr.Image(type="pil"),
 
 
 
27
  title="Cartoon to Sketch Converter",
28
  description="Upload an image to convert it into a sketch, and adjust the blur strength for different effects."
29
  )
 
1
+ # Attempt to import cv2 and install opencv-python-headless if not available
2
+ try:
3
+ import cv2
4
+ except ImportError:
5
+ import subprocess
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
 
13
+ # Function to convert image to sketch
14
  def convert_to_sketch(img, blur_strength):
15
  img = np.array(img) # Convert PIL Image to numpy array
16
  img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
 
29
  # Create Gradio interface
30
  interface = gr.Interface(
31
  fn=sketch_interface,
32
+ inputs=[
33
+ gr.Image(type="pil", label="Upload Image"),
34
+ gr.Slider(1, 51, step=2, label="Blur Strength", value=21)
35
+ ],
36
+ outputs=gr.Image(type="pil", label="Sketch Output"),
37
  title="Cartoon to Sketch Converter",
38
  description="Upload an image to convert it into a sketch, and adjust the blur strength for different effects."
39
  )