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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -8
app.py CHANGED
@@ -13,9 +13,17 @@ import gradio as gr
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:
@@ -23,6 +31,7 @@ def convert_to_sketch(img, blur_strength, brightness, contrast):
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
@@ -31,22 +40,25 @@ def convert_to_sketch(img, blur_strength, brightness, contrast):
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
@@ -56,14 +68,14 @@ def adjust_brightness_contrast(img, brightness, contrast):
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)
@@ -71,6 +83,8 @@ def adjust_brightness_contrast(img, brightness, contrast):
71
 
72
  except Exception as e:
73
  print(f"Error in adjust_brightness_contrast: {str(e)}")
 
 
74
  return None
75
 
76
  # Gradio interface function
@@ -80,6 +94,9 @@ def sketch_interface(image, blur_strength, brightness, contrast):
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
 
@@ -89,11 +106,14 @@ def sketch_interface(image, blur_strength, brightness, contrast):
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
 
13
  # Function to convert image to sketch
14
  def convert_to_sketch(img, blur_strength, brightness, contrast):
15
  try:
16
+ # Add debug print
17
+ print(f"Input image shape: {np.array(img).shape}")
18
+
19
  # Convert PIL Image to numpy array (BGR format for OpenCV)
20
  img = np.array(img)
21
 
22
+ # Check if image is empty
23
+ if img is None or img.size == 0:
24
+ print("Error: Empty input image")
25
+ return None
26
+
27
  # Ensure blur_strength is odd
28
  blur_strength = max(1, int(blur_strength))
29
  if blur_strength % 2 == 0:
 
31
 
32
  # Convert the image to grayscale
33
  img_gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
34
+ print(f"Grayscale shape: {img_gray.shape}")
35
 
36
  # Invert the grayscale image
37
  img_inverted = 255 - img_gray
 
40
  img_blur = cv2.GaussianBlur(img_inverted, (blur_strength, blur_strength), 0)
41
 
42
  # Blend the grayscale and blurred inverted images
 
43
  denominator = 255 - img_blur
44
  denominator[denominator == 0] = 1 # Prevent division by zero
45
 
46
+ img_blend = (img_gray * 256.0) / denominator
47
 
48
  # Clip values to valid range
49
  img_blend = np.clip(img_blend, 0, 255).astype(np.uint8)
50
+ print(f"Blend shape: {img_blend.shape}")
51
 
52
  # Adjust brightness and contrast
53
  sketch_with_bg = adjust_brightness_contrast(img_blend, brightness, contrast)
54
+ print(f"Final output shape: {sketch_with_bg.shape}")
55
 
56
  return sketch_with_bg
57
 
58
  except Exception as e:
59
  print(f"Error in convert_to_sketch: {str(e)}")
60
+ import traceback
61
+ traceback.print_exc()
62
  return None
63
 
64
  # Function to adjust brightness and contrast
 
68
  brightness = float(brightness)
69
  contrast = float(contrast)
70
 
71
+ # Convert to float32 for calculations
72
+ img = img.astype(float)
73
+
74
+ # Apply contrast
75
+ img = img * contrast
76
 
77
  # Apply brightness
78
+ img = img + brightness
 
 
 
79
 
80
  # Ensure output is in valid range
81
  img = np.clip(img, 0, 255).astype(np.uint8)
 
83
 
84
  except Exception as e:
85
  print(f"Error in adjust_brightness_contrast: {str(e)}")
86
+ import traceback
87
+ traceback.print_exc()
88
  return None
89
 
90
  # Gradio interface function
 
94
  return None
95
 
96
  try:
97
+ print(f"Input image type: {type(image)}")
98
+ print(f"Input image size: {image.size}")
99
+
100
  # Convert the input image to a sketch with adjustments
101
  sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
102
 
 
106
 
107
  # Convert the processed numpy array back to a PIL Image
108
  output_image = Image.fromarray(sketch)
109
+ print(f"Output image size: {output_image.size}")
110
 
111
  return output_image
112
 
113
  except Exception as e:
114
  print(f"Error in sketch_interface: {str(e)}")
115
+ import traceback
116
+ traceback.print_exc()
117
  return None
118
 
119
  # Create Gradio interface