Besimplestudio commited on
Commit
a1c4898
·
verified ·
1 Parent(s): d707b83

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +80 -49
app.py CHANGED
@@ -12,72 +12,103 @@ 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 (BGR format for OpenCV)
16
- img = np.array(img)
17
-
18
- # Convert the image to grayscale (use RGB2GRAY for PIL images)
19
- img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
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 sketch_with_bg
 
 
 
 
 
 
 
 
 
 
 
40
 
41
  # Function to adjust brightness and contrast
42
  def adjust_brightness_contrast(img, brightness, contrast):
43
- # Apply contrast adjustment
44
- img = cv2.convertScaleAbs(img, alpha=contrast, beta=brightness)
45
- return img
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
46
 
47
  # Gradio interface function
48
  def sketch_interface(image, blur_strength, brightness, contrast):
49
- # Convert the input image to a sketch with adjustments
50
- sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
51
-
52
- # Check if the sketch image is non-empty
53
- if sketch is None or sketch.size == 0:
54
- print("Error: Sketch is empty!")
55
  return None
56
-
57
- # Convert the processed numpy array back to a PIL Image
58
- output_image = Image.fromarray(sketch)
59
-
60
- # Ensure the output image is valid
61
- if output_image is None:
62
- print("Error: Output image is None!")
 
 
 
 
 
 
 
 
 
63
  return None
64
 
65
- # Return the processed sketch image
66
- return output_image
67
-
68
  # Create Gradio interface
69
  interface = gr.Interface(
70
  fn=sketch_interface,
71
  inputs=[
72
  gr.Image(type="pil", label="Upload Image"),
73
- gr.Slider(1, 51, step=2, label="Blur Strength", value=21),
74
- gr.Slider(-100, 100, label="Brightness", value=0),
75
- gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
76
  ],
77
- outputs=[gr.Image(type="pil", label="Sketch Output")],
78
  title="Cartoon to Sketch Converter",
79
  description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
80
  )
81
 
82
  # Launch the Gradio app
83
- interface.launch()
 
12
 
13
  # Function to convert image to sketch
14
  def convert_to_sketch(img, blur_strength, brightness, contrast):
15
+ try:
16
+ # Convert PIL Image to numpy array (BGR format for OpenCV)
17
+ img = np.array(img)
18
+
19
+ # Ensure blur_strength is odd
20
+ blur_strength = max(1, int(blur_strength))
21
+ if blur_strength % 2 == 0:
22
+ blur_strength += 1
23
+
24
+ # Convert the image to grayscale
25
+ img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
26
+
27
+ # Invert the grayscale image
28
+ img_inverted = 255 - img_gray
29
+
30
+ # Apply Gaussian blur to the inverted image
31
+ img_blur = cv2.GaussianBlur(img_inverted, (blur_strength, blur_strength), 0)
32
+
33
+ # Blend the grayscale and blurred inverted images
34
+ # Avoid division by zero by adding a small constant
35
+ denominator = 255 - img_blur
36
+ denominator[denominator == 0] = 1 # Prevent division by zero
37
+
38
+ img_blend = cv2.multiply(img_gray, 256.0 / denominator)
39
+
40
+ # Clip values to valid range
41
+ img_blend = np.clip(img_blend, 0, 255).astype(np.uint8)
42
+
43
+ # Adjust brightness and contrast
44
+ sketch_with_bg = adjust_brightness_contrast(img_blend, brightness, contrast)
45
+
46
+ return sketch_with_bg
47
+
48
+ except Exception as e:
49
+ print(f"Error in convert_to_sketch: {str(e)}")
50
+ return None
51
 
52
  # Function to adjust brightness and contrast
53
  def adjust_brightness_contrast(img, brightness, contrast):
54
+ try:
55
+ # Ensure brightness is within valid range
56
+ brightness = float(brightness)
57
+ contrast = float(contrast)
58
+
59
+ # Apply contrast first
60
+ img = cv2.convertScaleAbs(img, alpha=contrast)
61
+
62
+ # Apply brightness
63
+ if brightness > 0:
64
+ img = cv2.add(img, np.ones_like(img) * brightness)
65
+ else:
66
+ img = cv2.subtract(img, np.ones_like(img) * abs(brightness))
67
+
68
+ # Ensure output is in valid range
69
+ img = np.clip(img, 0, 255).astype(np.uint8)
70
+ return img
71
+
72
+ except Exception as e:
73
+ print(f"Error in adjust_brightness_contrast: {str(e)}")
74
+ return None
75
 
76
  # Gradio interface function
77
  def sketch_interface(image, blur_strength, brightness, contrast):
78
+ if image is None:
79
+ print("Error: No input image provided!")
 
 
 
 
80
  return None
81
+
82
+ try:
83
+ # Convert the input image to a sketch with adjustments
84
+ sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
85
+
86
+ if sketch is None:
87
+ print("Error: Sketch conversion failed!")
88
+ return None
89
+
90
+ # Convert the processed numpy array back to a PIL Image
91
+ output_image = Image.fromarray(sketch)
92
+
93
+ return output_image
94
+
95
+ except Exception as e:
96
+ print(f"Error in sketch_interface: {str(e)}")
97
  return None
98
 
 
 
 
99
  # Create Gradio interface
100
  interface = gr.Interface(
101
  fn=sketch_interface,
102
  inputs=[
103
  gr.Image(type="pil", label="Upload Image"),
104
+ gr.Slider(minimum=1, maximum=51, step=2, value=21, label="Blur Strength"),
105
+ gr.Slider(minimum=-100, maximum=100, value=0, label="Brightness"),
106
+ gr.Slider(minimum=0.1, maximum=3, step=0.1, value=1, label="Contrast")
107
  ],
108
+ outputs=gr.Image(type="pil", label="Sketch Output"),
109
  title="Cartoon to Sketch Converter",
110
  description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
111
  )
112
 
113
  # Launch the Gradio app
114
+ interface.launch()