Besimplestudio commited on
Commit
2541aba
·
verified ·
1 Parent(s): 1e24872

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -1,14 +1,8 @@
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, brightness, contrast):
@@ -51,7 +45,13 @@ def sketch_interface(image, blur_strength, brightness, contrast):
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
57
  interface = gr.Interface(
@@ -62,7 +62,7 @@ interface = gr.Interface(
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
  )
 
1
+ import cv2
 
 
 
 
 
 
 
2
  from PIL import Image, ImageTk
3
  import numpy as np
4
  import gradio as gr
5
+ import os
6
 
7
  # Function to convert image to sketch
8
  def convert_to_sketch(img, blur_strength, brightness, contrast):
 
45
  sketch = convert_to_sketch(image, blur_strength, brightness, contrast)
46
 
47
  # Ensure the output is a valid image (PIL Image)
48
+ output_image = Image.fromarray(sketch)
49
+
50
+ # Save the processed image temporarily
51
+ output_image.save("sketch_output.png")
52
+
53
+ # Return the processed sketch image and the file path for download
54
+ return output_image, "sketch_output.png"
55
 
56
  # Create Gradio interface
57
  interface = gr.Interface(
 
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"), gr.File(label="Download Sketch")],
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
  )