Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,19 +11,46 @@ 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 |
-
|
|
|
|
|
|
|
16 |
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
|
|
|
|
17 |
img_inverted = cv2.bitwise_not(img_gray)
|
|
|
|
|
18 |
img_blur = cv2.GaussianBlur(img_inverted, (blur_strength, blur_strength), sigmaX=0, sigmaY=0)
|
|
|
|
|
19 |
img_blend = cv2.divide(img_gray, 255 - img_blur, scale=256)
|
|
|
|
|
20 |
white_background = 255 * np.ones_like(img_blend)
|
|
|
|
|
21 |
sketch_with_bg = cv2.addWeighted(img_blend, 1, white_background, 1, 0)
|
|
|
|
|
|
|
|
|
|
|
22 |
return sketch_with_bg
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
# Gradio interface function
|
25 |
-
def sketch_interface(image, blur_strength):
|
26 |
-
|
|
|
|
|
|
|
27 |
return Image.fromarray(sketch)
|
28 |
|
29 |
# Create Gradio interface
|
@@ -31,11 +58,13 @@ 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,
|
39 |
)
|
40 |
|
41 |
# Launch the Gradio app
|
|
|
11 |
import gradio as gr
|
12 |
|
13 |
# Function to convert image to sketch
|
14 |
+
def convert_to_sketch(img, blur_strength, brightness, contrast):
|
15 |
+
# Convert PIL Image to numpy array
|
16 |
+
img = np.array(img)
|
17 |
+
|
18 |
+
# Convert the image to grayscale
|
19 |
img_gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
|
20 |
+
|
21 |
+
# Invert the grayscale image
|
22 |
img_inverted = cv2.bitwise_not(img_gray)
|
23 |
+
|
24 |
+
# Apply Gaussian blur to the inverted image
|
25 |
img_blur = cv2.GaussianBlur(img_inverted, (blur_strength, blur_strength), sigmaX=0, sigmaY=0)
|
26 |
+
|
27 |
+
# Blend the grayscale and blurred inverted images to create the sketch effect
|
28 |
img_blend = cv2.divide(img_gray, 255 - img_blur, scale=256)
|
29 |
+
|
30 |
+
# Create a white background
|
31 |
white_background = 255 * np.ones_like(img_blend)
|
32 |
+
|
33 |
+
# Add the blended image to the white background
|
34 |
sketch_with_bg = cv2.addWeighted(img_blend, 1, white_background, 1, 0)
|
35 |
+
|
36 |
+
# Adjust brightness and contrast
|
37 |
+
sketch_with_bg = adjust_brightness_contrast(sketch_with_bg, brightness, contrast)
|
38 |
+
|
39 |
+
# Return the adjusted sketch image
|
40 |
return sketch_with_bg
|
41 |
|
42 |
+
# Function to adjust brightness and contrast
|
43 |
+
def adjust_brightness_contrast(img, brightness, contrast):
|
44 |
+
# Apply contrast adjustment
|
45 |
+
img = cv2.convertScaleAbs(img, alpha=contrast, beta=brightness)
|
46 |
+
return img
|
47 |
+
|
48 |
# Gradio interface function
|
49 |
+
def sketch_interface(image, blur_strength, brightness, contrast):
|
50 |
+
# Convert the input image to a sketch with adjustments
|
51 |
+
sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
|
52 |
+
|
53 |
+
# Ensure the output is a valid image (PIL Image)
|
54 |
return Image.fromarray(sketch)
|
55 |
|
56 |
# Create Gradio interface
|
|
|
58 |
fn=sketch_interface,
|
59 |
inputs=[
|
60 |
gr.Image(type="pil", label="Upload Image"),
|
61 |
+
gr.Slider(1, 51, step=2, label="Blur Strength", value=21),
|
62 |
+
gr.Slider(-100, 100, label="Brightness", value=0),
|
63 |
+
gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
|
64 |
],
|
65 |
outputs=gr.Image(type="pil", label="Sketch Output"),
|
66 |
title="Cartoon to Sketch Converter",
|
67 |
+
description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
|
68 |
)
|
69 |
|
70 |
# Launch the Gradio app
|