Image Enhancement with Python using skimage Library in python Image Enhancement with Python using skimage Library in python
Adil Khan 6 years ago

Image Enhancement with Python using skimage Library in python

Scanned Image Enhancement in Python

# -*- coding: utf-8 -*-
 """
 Created on Fri Feb 14 17:11:32 2020
 This program is to show that how to enhance a scanned image
 @author: AdilKhan
 """
import matplotlib.pyplot as plt 
 from skimage import data
 from IPython import get_ipython
 get_ipython().run_line_magic('matplotlib', 'qt')
directory = 'C:/Users/AdilKhan/Desktop/Scanner/' #directory address
 imageName = 'input.jpg' # image name
inputFile = directory + imageName #image path
 page = data.load(inputFile) #load image
plt.subplot(1,3,1)
 plt.title('Original Image')
 plt.imshow(page)
threashold = 180 # set threashold
 mask = page > threashold # create mask
#textColor = [69,130,222] #text color blue
 textColor = 0
scanned = page
 scanned[:] = textColor
 scanned[mask] = 255
 plt.subplot(1,3,2)
 plt.title('Scanned Image')
 plt.imshow(scanned)
 plt.imsave(directory + 'output.jpg',scanned)
cropped = scanned[60:2850,150:2150,:] #crop image
 plt.subplot(1,3,3)
 plt.title('Cropped Image')
 plt.imshow(cropped)
 plt.imsave(directory + 'cropped.jpg',cropped)


 

Image Enhancement with Python using skimage Library in python _ 0.zip

Download: Image Enhancement with Python using skimage Library in python _ 0.zip

0
1.1K
LOW CAST MEAT CUTTING MACHINE

Summary of the Proposal : The main purpose of this project is to make a meat cutting...

1675638330.png
Adil Khan
1 year ago
AN INTEGRATED INDIGENOUSLY DEVELOPED IOT BASED HOSPITAL ROBOT FOR COVI...

COVID 19 is an epidemic that has caused worldwide respiratory problems and has weakened th...

1675638330.png
Adil Khan
1 year ago
Automation in Supply Chain Management System Using Business Intelligen...

The best and most important rule of successful business is to save yourself from major los...

1675638330.png
Adil Khan
1 year ago
Insomnia Detector

Insomnia detector is an android application which can measure the situation of the patient...

1675638330.png
Adil Khan
1 year ago
EMG Based Prosthetic Hand For Amputees

The epitome of our project is that we are making Robotic Prosthetic Limb for ?Amputees?. T...

1675638330.png
Adil Khan
1 year ago