Recommended
PPTX
Image Enhancement Techniques using OpenCV – Python.pptx
PPTX
Spatial Filters (Digital Image Processing)
PPTX
Image Enhancement Techniques using OpenCV – Python.pptx
PPT
Digital Image Processing Filters part10.ppt
PPTX
OpenCV presentation series- part 4
PPT
SpatialFiltering2 (1).ppt complete guide
PPT
Spatial domain filtering.ppt
PPT
Image processing spatialfiltering
PPTX
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
PDF
Digital image processing using matlab: basic transformations, filters and ope...
PPTX
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
PPTX
Digital image processing Tool presentation
PPT
PPTX
Spatial enhancement techniques
PPTX
Presentation-lokesh IMAGES for research.pptx
PPT
Spatial Filtering in intro image processingr
PPT
PPTX
Simultaneous Smoothing and Sharpening of Color Images
PPTX
SPATIAL FILTERING. FOR UNDERGRADUATE .pptx
PPTX
Matlab Image Enhancement Techniques
PPT
Digital Image Processing UNIT-2.ppt
PDF
PPT s04-machine vision-s2
PPTX
computer_vision_image_filtering_enhancement.pptx
PPT
3 intensity transformations and spatial filtering slides
PPTX
Matlab Image Enhancement Techniques
PDF
PDF
PDF
An Inclusive Analysis on Various Image Enhancement Techniques
PDF
Image Compression using Machine Learning: A Hybrid DCT-Autoencoder Approach
PDF
I am sharing 'AI in power station ' with you - Hari A K.pdf
More Related Content
PPTX
Image Enhancement Techniques using OpenCV – Python.pptx
PPTX
Spatial Filters (Digital Image Processing)
PPTX
Image Enhancement Techniques using OpenCV – Python.pptx
PPT
Digital Image Processing Filters part10.ppt
PPTX
OpenCV presentation series- part 4
PPT
SpatialFiltering2 (1).ppt complete guide
PPT
Spatial domain filtering.ppt
PPT
Image processing spatialfiltering
Similar to Image_Sharpening_Task_With_Code.pptxhyyy
PPTX
LAPLACE TRANSFORM SUITABILITY FOR IMAGE PROCESSING
PDF
Digital image processing using matlab: basic transformations, filters and ope...
PPTX
COM2304: Intensity Transformation and Spatial Filtering – III Spatial Filters...
PPTX
Digital image processing Tool presentation
PPT
PPTX
Spatial enhancement techniques
PPTX
Presentation-lokesh IMAGES for research.pptx
PPT
Spatial Filtering in intro image processingr
PPT
PPTX
Simultaneous Smoothing and Sharpening of Color Images
PPTX
SPATIAL FILTERING. FOR UNDERGRADUATE .pptx
PPTX
Matlab Image Enhancement Techniques
PPT
Digital Image Processing UNIT-2.ppt
PDF
PPT s04-machine vision-s2
PPTX
computer_vision_image_filtering_enhancement.pptx
PPT
3 intensity transformations and spatial filtering slides
PPTX
Matlab Image Enhancement Techniques
PDF
PDF
PDF
An Inclusive Analysis on Various Image Enhancement Techniques
Recently uploaded
PDF
Image Compression using Machine Learning: A Hybrid DCT-Autoencoder Approach
PDF
I am sharing 'AI in power station ' with you - Hari A K.pdf
PPTX
Epec Engineered Technologies - Corporate Overview – 2026
PPTX
UNIT-1.pptx...................................
PPTX
pH-Responsive Polymers: Synthesis, Properties, and Biomedical Applications
PPTX
PQ CHP-1 brief introduction to power quality
PPTX
Module 1 computer network and protocols
PPTX
PEMET 413 COMPOSITE MATERIALS MOD1 LECTURE 3.pptx
PPT
lecture ppt on chlor_alkali_industries process
PDF
22nd Safety Convention by IE(I) dt 27.12.25 by Rajesh Prasad.pdf
PPTX
TR334_Foundation_Engineering_I_Slope stability _i.pptx
PPT
Steam generation , types of steam, boilers and their classifications, mountin...
PPTX
Maintenance Mgt of CARDMILL in Bangladesh .pptx
PDF
Introduction to Human Computer Interaction .pdf
PPT
01 Transistor Scaling in semiconductor applications
PPTX
PQ CHP-2 is about passive pq problems and
PPTX
Unit 5 Materials of plant construction.pptx
PDF
BO049FHDMO 0.49 Inch Micro OLED Datasheet
PPTX
22PEOIT4C Session 10 Adversarial Search.pptx
PPT
ER-model including eer models too.............
Image_Sharpening_Task_With_Code.pptxhyyy 1. Image Processing Task – Image
Sharpening
PES Institute of Technology &
Management
Department of Electronics and
Communication Engineering
2. Problem Statement
• Objective: Enhance the edges of an image
using a sharpening filter.
• • 1. Load the image.
• • 2. Apply a kernel to sharpen the image (e.g.,
Laplacian or unsharp masking).
• • 3. Save and display the sharpened image.
3. Importance of Image Sharpening
• Improves visibility of image features.
• • Highlights object boundaries and enhances
fine details.
• • Used in applications like medical imaging
and object detection.
4. Techniques for Image Sharpening
• Laplacian Filter: Detects edges by calculating
second derivative.
• • Unsharp Masking: Enhances contrast by
subtracting a blurred version.
• • Kernels highlight rapid intensity changes.
5. Step-by-Step Approach
• 1. Load image using OpenCV or PIL.
• • 2. Apply sharpening kernel (Laplacian or
unsharp).
• • 3. Save and display the sharpened output.
6. Sample Kernel Matrices
• Laplacian Kernel:
• [ 0 -1 0 ]
• [-1 4 -1]
• [ 0 -1 0 ]
• • Unsharp Masking Kernel:
• [-1 -1 -1]
• [-1 9 -1]
• [-1 -1 -1]
7. Output Examples
• Before and After comparison of the image.
• • Visual improvement in edge definition and
clarity.
• • (Insert images here)
8. 9. Bonus Task
• Experiment with various sharpening kernels.
• • Analyze effects on different types of images.
• • Observe how sharpness and clarity vary.
10. 11. Sharpening Image - Python Code
• import cv2
• import numpy as np
• # Load the image
• image = cv2.imread('input.jpg')
• # Define sharpening kernel (Unsharp Masking)
• kernel = np.array([[-1, -1, -1],