Besimplestudio commited on
Commit
f45aefd
·
verified ·
1 Parent(s): 5312728

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -15
app.py CHANGED
@@ -1,4 +1,4 @@
1
- # Attempt to import opencv-python-headless and install it if not available
2
  try:
3
  import cv2
4
  except ImportError:
@@ -6,37 +6,36 @@ 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
13
 
14
- # Function to convert the image to a sketch
15
  def convert_to_sketch(img, blur_strength, brightness, contrast):
16
  # Convert PIL Image to numpy array
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)
24
-
25
  # Apply Gaussian blur to the inverted image
26
  img_blur = cv2.GaussianBlur(img_inverted, (blur_strength, blur_strength), sigmaX=0, sigmaY=0)
27
-
28
  # Blend the grayscale and blurred inverted images to create the sketch effect
29
  img_blend = cv2.divide(img_gray, 255 - img_blur, scale=256)
30
-
31
  # Create a white background
32
  white_background = 255 * np.ones_like(img_blend)
33
-
34
  # Add the blended image to the white background
35
  sketch_with_bg = cv2.addWeighted(img_blend, 1, white_background, 1, 0)
36
-
37
  # Adjust brightness and contrast
38
  sketch_with_bg = adjust_brightness_contrast(sketch_with_bg, brightness, contrast)
39
-
40
  return sketch_with_bg
41
 
42
  # Function to adjust brightness and contrast
@@ -49,10 +48,16 @@ def adjust_brightness_contrast(img, brightness, contrast):
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
  output_image = Image.fromarray(sketch)
55
-
 
 
 
 
 
 
56
  # Return the processed sketch image
57
  return output_image
58
 
@@ -65,7 +70,7 @@ interface = gr.Interface(
65
  gr.Slider(-100, 100, label="Brightness", value=0),
66
  gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
67
  ],
68
- outputs=gr.Image(type="pil", label="Sketch Output"),
69
  title="Cartoon to Sketch Converter",
70
  description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
71
  )
 
1
+ # Attempt to import cv2 and install opencv-python-headless if not available
2
  try:
3
  import cv2
4
  except ImportError:
 
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
 
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 sketch_with_bg
40
 
41
  # Function to adjust brightness and contrast
 
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
  # Ensure the output is a valid image (PIL Image)
53
  output_image = Image.fromarray(sketch)
54
+
55
+ # Check if the image was properly created
56
+ if output_image:
57
+ print("Image processed successfully!")
58
+ else:
59
+ print("Failed to process image!")
60
+
61
  # Return the processed sketch image
62
  return output_image
63
 
 
70
  gr.Slider(-100, 100, label="Brightness", value=0),
71
  gr.Slider(1, 3, step=0.1, label="Contrast", value=1)
72
  ],
73
+ outputs=[gr.Image(type="pil", label="Sketch Output")],
74
  title="Cartoon to Sketch Converter",
75
  description="Upload an image to convert it into a sketch, adjust the blur strength, brightness, and contrast for different effects."
76
  )