Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,9 +1,16 @@
|
|
1 |
-
import cv2
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
import numpy as np
|
4 |
import gradio as gr
|
5 |
|
6 |
-
#
|
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=[
|
26 |
-
|
|
|
|
|
|
|
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 |
)
|