Code Monkey home page Code Monkey logo

implementation-of-filter's Introduction

EX-05 Implementation-of-filter

Date: 22-03-2024

Aim:

To implement filters for smoothing and sharpening the images in the spatial domain.

Software Required:

Anaconda - Python 3.7

Algorithm:

Step1

Install the open cv by using pip install opencv-python

Step2

Import cv2 for reading and changing it smooth and sharpen image

Step3

import numpy for give the width and size of a image

Step4

import matplotlib.pyplot for display the image.

Program:

Developed By : V.Sriram

Register Number: 212222103002


1. Smoothing Filters

i) Using Averaging Filter

import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(image3)
plt.title('FILTERED')
plt.axis('off')

ii) Using Weighted Averaging Filter

import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
kernal2=np.array([[1,2,1],[2,4,2],[1,2,1]])/16
image3=cv2.filter2D(image2,-1,kernal2)
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(image3)
plt.title('FILTERED')
plt.axis('off')

iii) Using Gaussian Filter

import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
image3=cv2.GaussianBlur(src=image2,ksize=(11,11),sigmaX=0,sigmaY=0)
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(image3)
plt.title(' Gaussian Filter')
plt.axis('off')

iv) Using Median Filter


import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
image3=cv2.medianBlur(src=image2,ksize=11)
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(image3)
plt.title('Median Blur')
plt.axis('off')

2. Sharpening Filters

i) Using Laplacian Kernal


import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
kernal2=np.array([[0,1,0],[1,-4,1],[0,1,0]])
image3=cv2.filter2D(image2,-1,kernal2)
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(image3)
plt.title('Sharpening Filters')
plt.axis('off')

ii) Using Laplacian Operator

import cv2
import numpy as np
import matplotlib.pyplot as plt
image1=cv2.imread('test_image.jpeg')
image2=cv2.cvtColor(image1,cv2.COLOR_BGR2RGB)
kernel=np.ones((11,11),np.float32)/121
image3=cv2.Laplacian(image2,cv2.CV_64F)
laplacian_image = np.uint8(np.absolute(image3))
plt.figure(figsize=(9,9))
plt.subplot(1,2,1)
plt.imshow(image2)
plt.title('ORIGINAL')
plt.axis('off')
plt.subplot(1,2,2)
plt.imshow(laplacian_image)
plt.title('Sharpening Filters')
plt.axis('off')

OUTPUT:

1. Smoothing Filters

i) Using Averaging Filter

image

ii) Using Weighted Averaging Filter

image

iii) Using Gaussian Filter

image

iv) Using Median Filter

image

2. Sharpening Filters

i) Using Laplacian Kernal

image

ii) Using Laplacian Operator

image

Result:

Thus the filters are designed for smoothing and sharpening the images in the spatial domain.

implementation-of-filter's People

Contributors

darkwebnew avatar swedha333 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.