Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions projects/Reduce_image_file_size/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Script Title
#### Script to reduce the size of image file using the openCV library of python.

### Prerequisites
openCV library

`pip install opencv-python`

### How to run the script
- Add the image in jpg format with name as 'input.jpg' in this folder.
- Run reduce_image_size.py script.
- resized output image will be generated in this folder.

## *Author Name*
### *Vipul Verma*
Binary file added projects/Reduce_image_file_size/input.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
23 changes: 23 additions & 0 deletions projects/Reduce_image_file_size/reduce_image_size.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# import openCV library for image handling
import cv2

# read image to be resized by imread() function of openCV library
img = cv2.imread('input.jpg')
print(img.shape)

# set the ratio of resized image
k = 5
width = int((img.shape[1])/k)
height = int((img.shape[0])/k)

# resize the image by resize() function of openCV library
scaled = cv2.resize(img, (width, height), interpolation=cv2.INTER_AREA)
print(scaled.shape)

# show the resized image using imshow() function of openCV library
cv2.imshow("Output", scaled)
cv2.waitKey(500)
cv2.destroyAllWindows()

# get the resized image output by imwrite() function of openCV library
cv2.imwrite('resized_output_image.jpg', scaled)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.