NaimaAqeel commited on
Commit
f42b290
·
verified ·
1 Parent(s): a19fb9f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +13 -7
app.py CHANGED
@@ -1,8 +1,12 @@
1
  import numpy as np
2
  import gradio as gr
3
- from skimage import io, color
4
- from numpy.linalg import norm
5
  from PIL import Image
 
 
 
 
 
6
 
7
  def svd_compress(image, k):
8
  """Compress the image using SVD by keeping only the top k singular values."""
@@ -18,8 +22,11 @@ def process_image(image, k):
18
  # Convert to grayscale
19
  gray_image = color.rgb2gray(image_np)
20
 
 
 
 
21
  # Compress the image
22
- compressed_image = svd_compress(gray_image, k)
23
 
24
  # Convert compressed image back to PIL Image for Gradio output
25
  compressed_image_pil = Image.fromarray((compressed_image * 255).astype(np.uint8))
@@ -28,10 +35,9 @@ def process_image(image, k):
28
 
29
  # Gradio interface
30
  gr.Interface(fn=process_image,
31
- inputs=[gr.Image(type="pil", shape=(500, 500)),
32
  gr.Slider(1, 100, step=1, value=50, label="Compression Rank")],
33
  outputs=gr.Image(type="pil"),
34
  title="Interactive Image Compression using SVD",
35
- description="Upload an image (500x500 max) and adjust the compression rank.")
36
-
37
- gr_interface.launch()
 
1
  import numpy as np
2
  import gradio as gr
3
+ from skimage import color
 
4
  from PIL import Image
5
+ from skimage.transform import resize
6
+
7
+ def resize_image(image, target_shape=(500, 500)):
8
+ """Resize image to target shape."""
9
+ return resize(image, target_shape, anti_aliasing=True)
10
 
11
  def svd_compress(image, k):
12
  """Compress the image using SVD by keeping only the top k singular values."""
 
22
  # Convert to grayscale
23
  gray_image = color.rgb2gray(image_np)
24
 
25
+ # Resize image to 500x500 for faster processing
26
+ resized_image = resize_image(gray_image, target_shape=(500, 500))
27
+
28
  # Compress the image
29
+ compressed_image = svd_compress(resized_image, k)
30
 
31
  # Convert compressed image back to PIL Image for Gradio output
32
  compressed_image_pil = Image.fromarray((compressed_image * 255).astype(np.uint8))
 
35
 
36
  # Gradio interface
37
  gr.Interface(fn=process_image,
38
+ inputs=[gr.Image(type="pil"),
39
  gr.Slider(1, 100, step=1, value=50, label="Compression Rank")],
40
  outputs=gr.Image(type="pil"),
41
  title="Interactive Image Compression using SVD",
42
+ description="Upload an image and adjust the compression rank to see the compressed version."
43
+ ).launch()