尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
Presentation over image smoothing
                    and sharpening

              -Vinay Kumar Gupta
                      0700410088
What is a Digital Image?
 A digital image is a representation of a two-
 dimensional image as a finite set of digital values,
 called picture elements or pixels.
Why Digital Image Processing?
Digital image processing focuses on two major tasks:

   Improvement of pictorial information for human
    interpretation.

   Processing of image data for storage, transmission and
    representation for autonomous machine perception
Applications:
The use of digital image processing techniques has
exploded and they are now used for all kinds of tasks in
all kinds of areas:
   Image enhancement/restoration
   Artistic effects
   Medical visualisation
   Industrial inspection
   Law enforcement
   Human computer interfaces
Examples: The Hubble Telescope
Launched in 1990 the Hubble telescope can take
images of very distant objects
However, an incorrect mirror made many of Hubble’s
images useless.
Image processing techniques were used to fix this
Examples: HCI
Try to make human computer
interfaces more natural
   Face recognition
   Gesture recognition
Does anyone remember the
user interface from “Minority
Report”?
Key Stages in Digital Image Processing:
                   Image        Morphological
                 Restoration     Processing

    Image
 Enhancement                                    Segmentation



    Image                                          Object
  Acquisition                                    Recognition



Problem Domain                                  Representation
                                                & Description
                 Colour Image     Image
                  Processing    Compression
Image Representation
Before we discuss image acquisition
recall that a digital image is
                                                col
composed of M rows
and N columns of pixels
each storing a value

Pixel values are most
often grey levels in the
range 0-255(black-white)
                                       f (row, col)
                                 row
Image Representation
Image Representation
Image Representation
What Is Image Enhancement?
Image enhancement is the process of making images
more useful
The reasons for doing this include:
   Highlighting interesting detail in images
   Removing noise from images
   Making images more visually appealing
Spatial & Frequency Domains
There are two broad categories of image enhancement
techniques
   Spatial domain techniques
       Direct manipulation of image pixels
   Frequency domain techniques
       Manipulation of Fourier transform or wavelet transform of an
        image
For the moment we will concentrate on techniques that
operate in the spatial domain
Image Histograms
The histogram of an image shows us the distribution of grey
levels in the image
 Frequencies




                       Grey Levels
Spatial filtering techniques:
  Neighbourhood operations
  What is spatial filtering?
  Smoothing operations
  What happens at the edges?
Neighbourhood Operations
Neighbourhood operations simply operate on a larger
neighbourhood of pixels than point operations
                          Origin                                  x
Neighbourhoods are
mostly a rectangle
around a central pixel
Any size rectangle
and any shape filter                                              (x, y)
                                 Neighbourhood
are possible



                            y                    Image f (x, y)
Simple Neighbourhood Operations
Some simple neighbourhood operations include:
   Min:
     Set the pixel value to the minimum in the neighbourhood
   Max:
      Set the pixel value to the maximum in the neighbourhood
   Median:
       The median value of a set of numbers is the midpoint value
    in that set (e.g. from the set [1, 7, 15, 18, 24] 15 is the median).
    Sometimes the median works better than the average
The Spatial Filtering Process
Origin                                      x
                                                  a    b   c          r     s      t
                                                  d
                                                  g
                                                       e
                                                       h
                                                            f
                                                            i
                                                                  *   u
                                                                      x
                                                                            v
                                                                            y
                                                                                   w
                                                                                   z
                                                 Original Image           Filter
              Simple 3*3                             Pixels
                             e    3*3 Filter
          Neighbourhood
                                                eprocessed = v*e +
                                                             r*a + s*b + t*c +
                                                             u*d + w*f +
  y                        Image f (x, y)                    x*g + y*h + z*i

  The above is repeated for every pixel in the
  original image to generate the filtered image
Smoothing Spatial Filters
 One of the simplest spatial filtering operations we
can perform is a smoothing operation
   Simply average all of the pixels in a neighbourhood
    around a central value
   Especially useful             1/       1/       1/
                                       9        9        9
    in removing noise
    from images
   Also useful for
                                  1/
                                       9
                                           1/
                                                9
                                                    1/
                                                         9   Simple
    highlighting gross                                       averaging
    detail                        1/       1/       1/       filter
                                       9        9        9
Smoothing Spatial Filtering
Origin                                               x
                                                             104 100 108         1/        1/       1/
                                                                                      9         9        9
                                                                                 1/        1/       1/
                                                              99 106 98

                                                              95   90   85
                                                                             *   1/
                                                                                      9
                                                                                           1/
                                                                                                9
                                                                                                    1/
                                                                                                         9

                                                                                      9         9        9

                          1/  1/  1/
                          104 100 108
                                                          Original Image                  Filter
                            9   9   9
             Simple 3*3   1/
                           99 106 198
                              1/   /9
                                            3*3 Smoothing     Pixels
                            9   9
         Neighbourhood    195
                           /9   1/
                                90    185
                                       /9
                                            Filter
                                  9

                                                         e = 1/9*106 +
                                                             1/ *104 + 1/ *100 + 1/ *108 +
                                                               9          9        9
                                                             1/ *99 + 1/ *98 +
                                                               9        9
  y                        Image f (x, y)                    1/ *95 + 1/ *90 + 1/ *85
                                                               9        9        9
                                                           = 98.3333
  The above is repeated for every pixel in the
  original image to generate the smoothed image
Sharpening Spatial Filters
Previously we have looked at smoothing filters which
remove fine detail
Sharpening spatial filters seek to highlight fine detail
   Remove blurring from images
   Highlight edges
Sharpening filters are based on spatial differentiation
Spatial Differentiation
Differentiation measures the rate of change of a function
Let’s consider a simple 1 dimensional example
Spatial Differentiation

          A               B
1st   Derivative
The formula for the 1st derivative of a function is as
follows:
               f
                     f ( x 1)       f ( x)
               x
     It’s just the difference between subsequent values
and measures the rate of change of the function.
2nd   Derivative
The formula for the 2nd derivative of a function is as
follows:    2
               f
             2
                     f ( x 1)       f ( x 1) 2 f ( x)
               x
Simply takes into account the values both before and
after the current value
Using Second Derivatives For Image
Enhancement
The 2nd derivative is more useful for image enhancement
than the 1st derivative
   Stronger response to fine detail
   Simpler implementation
   We will come back to the 1st order derivative later on
The first sharpening filter we will look at is the Laplacian
   Isotropic
   One of the simplest sharpening filters
   We will look at a digital implementation
The Laplacian
 The Laplacian is defined as follows:
                                 2         2
                       2           f         f
                           f     2         2
                                   x         y
 where the partial 1st order derivative in the x direction is
 defined as follows:
           2
             f
           2
                  f ( x 1, y )       f ( x 1, y ) 2 f ( x, y )
             x
 and in the y direction as follows:
       2
         f
       2
                 f ( x, y 1)     f ( x, y 1) 2 f ( x, y )
         y
The Laplacian (cont…)
 So, the Laplacian can be given as follows:
     2
         f   [ f ( x 1, y ) f ( x 1, y )
                  f ( x, y 1) f ( x, y 1)]
                 4 f ( x, y)
 We can easily build a filter based on this

                       0    1    0

                       1    -4    1

                       0    1    0
The Laplacian (cont…)
Applying the Laplacian to an image we get a new image
that highlights edges and other discontinuities




         Original        Laplacian         Laplacian
          Image       Filtered Image    Filtered Image
                                       Scaled for Display
But That Is Not Very Enhanced!
 The result of a Laplacian filtering is not an
 enhanced image
 We have to do more work in order to get
 our final image
 Subtract the Laplacian result from the
 original image to generate our final
 sharpened enhanced image
                                                     Laplacian
                                                  Filtered Image
                                  2              Scaled for Display
    g ( x, y )    f ( x, y )          f
Laplacian Image Enhancement

                 -                      =

     Original             Laplacian           Sharpened
      Image            Filtered Image           Image

 In the final sharpened image edges and fine detail are
 much more obvious
Laplacian Image Enhancement
Simplified Image Enhancement
The entire enhancement can be combined into a single
filtering operation
                             2
  g ( x, y )    f ( x, y )      f
               f ( x, y) [ f ( x 1, y)     f ( x 1, y)
                            f ( x, y 1)    f ( x, y 1)
                           4 f ( x, y)]
               5 f ( x, y)   f ( x 1, y) f ( x 1, y)
                             f ( x, y 1) f ( x, y 1)
Simplified Image Enhancement (cont…)
This gives us a new filter which does the whole job for us
in one step

                       0    -1   0

                       -1   5    -1

                       0    -1   0
The Big Idea

                     =


Any function that periodically repeats itself can
be expressed as a sum of sines and cosines of
different frequencies each multiplied by a
different coefficient – a Fourier series
The Discrete Fourier Transform (DFT)
The Discrete Fourier Transform of f(x, y), for x = 0, 1,
2…M-1 and y = 0,1,2…N-1, denoted by F(u, v), is given by
the equation:
                 M 1N 1
                                           j 2 ( ux / M vy / N )
 F (u , v)                  f ( x, y )e
                 x 0 y 0
for u = 0, 1, 2…M-1 and v = 0, 1, 2…N-1.
DFT & Images
The DFT of a two dimensional image can be visualised
by showing the spectrum of the images component
frequencies



                      DFT
The DFT and Image Processing
To filter an image in the frequency domain:
   1.   Compute F(u,v) the DFT of the image
   2.   Multiply F(u,v) by a filter function H(u,v)
   3.   Compute the inverse DFT of the result
Some Basic Frequency Domain Filters
                         Low Pass Filter




                         High Pass Filter
Smoothing Frequency Domain Filters
Smoothing is achieved in the frequency domain by
dropping out the high frequency components
The basic model for filtering is:
       G(u,v) = H(u,v)F(u,v)
where F(u,v) is the Fourier transform of the image being
filtered and H(u,v) is the filter transform function
Low pass filters – only pass the low frequencies,
drop the high ones.
Ideal Low Pass Filter
Simply cut off all high frequency components that are a
specified distance D0 from the origin of the transform




changing the distance changes the behaviour of the filter
Ideal Low Pass Filter (cont…)
The transfer function for the ideal low pass filter can be
given as:
                  1 if D(u, v) D0
     H (u, v)
                  0 if D(u, v) D0

where D(u,v) is given as:
                               2                2 1/ 2
     D(u, v) [(u M / 2)            (v N / 2) ]
Butterworth Low pass Filters
The transfer function of a Butterworth lowpass filter of
order n with cutoff frequency at distance D0 from the
origin is defined as:
                             1
          H (u , v)
                    1 [ D(u , v) / D0 ]2 n
Gaussian Low pass Filters
The transfer function of a Gaussian lowpass filter is
defined as:
                       D2 (u ,v ) / 2 D0 2
    H (u, v) e
Lowpass Filtering Examples
 A low pass Gaussian filter is used to connect broken text
Sharpening in the Frequency Domain
Edges and fine detail in images are associated with high
frequency components
High pass filters – only pass the high frequencies,
drop the low ones.
High pass frequencies are precisely the reverse of low
pass filters, so:
       Hhp(u, v) = 1 – Hlp(u, v)
Ideal High Pass Filters
The ideal high pass filter is given as:
                      0 if D(u, v) D0
        H (u, v)
                      1 if D(u, v) D0
where D0 is the cut off distance as before
Butterworth High Pass Filters
The Butterworth high pass filter is given as:
                             1
       H (u , v)                        2n
                   1 [ D0 / D(u , v)]

where n is the order and D0 is the cut off distance as
before
Gaussian High Pass Filters
The Gaussian high pass filter is given as: 2
                            D2 (u ,v ) / 2 D0
    H (u, v) 1 e
where D0 is the cut off distance as before
Frequency Domain Filtering & Spatial
Domain Filtering
Similar jobs can be done in the spatial and frequency
domains
Filtering in the spatial domain can be easier to
understand
Filtering in the frequency domain can be much faster –
especially for large images
Questions?
THANK YOU…!!! 

More Related Content

What's hot

Chapter 5 Image Processing: Fourier Transformation
Chapter 5 Image Processing: Fourier TransformationChapter 5 Image Processing: Fourier Transformation
Chapter 5 Image Processing: Fourier Transformation
Varun Ojha
 
Image compression
Image compression Image compression
Image compression
GARIMA SHAKYA
 
Chapter10 image segmentation
Chapter10 image segmentationChapter10 image segmentation
Chapter10 image segmentation
asodariyabhavesh
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
lalithambiga kamaraj
 
Chapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsChapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woods
asodariyabhavesh
 
Edge Detection using Hough Transform
Edge Detection using Hough TransformEdge Detection using Hough Transform
Edge Detection using Hough Transform
Mrunal Selokar
 
SPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSINGSPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSING
muthu181188
 
Image Enhancement in Spatial Domain
Image Enhancement in Spatial DomainImage Enhancement in Spatial Domain
Image Enhancement in Spatial Domain
DEEPASHRI HK
 
Edge linking hough transform
Edge linking hough transformEdge linking hough transform
Edge linking hough transform
aruna811496
 
5 spatial filtering p1
5 spatial filtering p15 spatial filtering p1
5 spatial filtering p1
Gichelle Amon
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image Processing
DHIVYADEVAKI
 
Edge Detection and Segmentation
Edge Detection and SegmentationEdge Detection and Segmentation
Edge Detection and Segmentation
A B Shinde
 
Frequency Domain Image Enhancement Techniques
Frequency Domain Image Enhancement TechniquesFrequency Domain Image Enhancement Techniques
Frequency Domain Image Enhancement Techniques
Diwaker Pant
 
Image restoration and degradation model
Image restoration and degradation modelImage restoration and degradation model
Image restoration and degradation model
AnupriyaDurai
 
Image Restoration (Order Statistics Filters)
Image Restoration (Order Statistics Filters)Image Restoration (Order Statistics Filters)
Image Restoration (Order Statistics Filters)
Kalyan Acharjya
 
Intensity Transformation
Intensity TransformationIntensity Transformation
Intensity Transformation
Amnaakhaan
 
Image Restoration
Image RestorationImage Restoration
Image Restoration
Poonam Seth
 
Discrete cosine transform
Discrete cosine transform   Discrete cosine transform
Discrete cosine transform
Rashmi Karkra
 
Spatial Filters (Digital Image Processing)
Spatial Filters (Digital Image Processing)Spatial Filters (Digital Image Processing)
Spatial Filters (Digital Image Processing)
Kalyan Acharjya
 
Sharpening spatial filters
Sharpening spatial filtersSharpening spatial filters

What's hot (20)

Chapter 5 Image Processing: Fourier Transformation
Chapter 5 Image Processing: Fourier TransformationChapter 5 Image Processing: Fourier Transformation
Chapter 5 Image Processing: Fourier Transformation
 
Image compression
Image compression Image compression
Image compression
 
Chapter10 image segmentation
Chapter10 image segmentationChapter10 image segmentation
Chapter10 image segmentation
 
Digital Image Processing
Digital Image ProcessingDigital Image Processing
Digital Image Processing
 
Chapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woodsChapter 1 and 2 gonzalez and woods
Chapter 1 and 2 gonzalez and woods
 
Edge Detection using Hough Transform
Edge Detection using Hough TransformEdge Detection using Hough Transform
Edge Detection using Hough Transform
 
SPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSINGSPATIAL FILTERING IN IMAGE PROCESSING
SPATIAL FILTERING IN IMAGE PROCESSING
 
Image Enhancement in Spatial Domain
Image Enhancement in Spatial DomainImage Enhancement in Spatial Domain
Image Enhancement in Spatial Domain
 
Edge linking hough transform
Edge linking hough transformEdge linking hough transform
Edge linking hough transform
 
5 spatial filtering p1
5 spatial filtering p15 spatial filtering p1
5 spatial filtering p1
 
Image segmentation in Digital Image Processing
Image segmentation in Digital Image ProcessingImage segmentation in Digital Image Processing
Image segmentation in Digital Image Processing
 
Edge Detection and Segmentation
Edge Detection and SegmentationEdge Detection and Segmentation
Edge Detection and Segmentation
 
Frequency Domain Image Enhancement Techniques
Frequency Domain Image Enhancement TechniquesFrequency Domain Image Enhancement Techniques
Frequency Domain Image Enhancement Techniques
 
Image restoration and degradation model
Image restoration and degradation modelImage restoration and degradation model
Image restoration and degradation model
 
Image Restoration (Order Statistics Filters)
Image Restoration (Order Statistics Filters)Image Restoration (Order Statistics Filters)
Image Restoration (Order Statistics Filters)
 
Intensity Transformation
Intensity TransformationIntensity Transformation
Intensity Transformation
 
Image Restoration
Image RestorationImage Restoration
Image Restoration
 
Discrete cosine transform
Discrete cosine transform   Discrete cosine transform
Discrete cosine transform
 
Spatial Filters (Digital Image Processing)
Spatial Filters (Digital Image Processing)Spatial Filters (Digital Image Processing)
Spatial Filters (Digital Image Processing)
 
Sharpening spatial filters
Sharpening spatial filtersSharpening spatial filters
Sharpening spatial filters
 

Viewers also liked

Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
Sanyam Agarwal
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
Hossain Md Shakhawat
 
High pass filter
High pass filterHigh pass filter
High pass filter
Anirban Bhowal
 
Low pass filter
Low pass filterLow pass filter
Low pass filter
Mohamad Firdaus Daud
 
Low pass filters
Low pass filtersLow pass filters
Low pass filters
kunwartouseef
 
Digital image processing question bank
Digital image processing question bankDigital image processing question bank
Digital image processing question bank
Yaseen Albakry
 
Lecture 3b: Decision Trees (1 part)
Lecture 3b: Decision Trees (1 part)Lecture 3b: Decision Trees (1 part)
Lecture 3b: Decision Trees (1 part)
Marina Santini
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
Revanth Chimmani
 
Color models
Color modelsColor models
Color models
Haitham Ahmed
 
10 color image processing
10 color image processing10 color image processing
10 color image processing
babak danyal
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processing
kiruthiammu
 
Colour models
Colour modelsColour models
Colour models
BCET
 
Color models
Color modelsColor models
Color models
Moahmed Sweelam
 
Filters
FiltersFilters
Color Models Computer Graphics
Color Models Computer GraphicsColor Models Computer Graphics
Color Models Computer Graphics
dhruv141293
 
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain RatioLecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Marina Santini
 
Smoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainSmoothing Filters in Spatial Domain
Smoothing Filters in Spatial Domain
Madhu Bala
 
Color Models
Color ModelsColor Models
Color Models
Mustafa Salam
 
Enhancement in spatial domain
Enhancement in spatial domainEnhancement in spatial domain
Enhancement in spatial domain
Ashish Kumar
 
Ecommerce website proposal
Ecommerce website proposalEcommerce website proposal
Ecommerce website proposal
Sudhir Raj
 

Viewers also liked (20)

Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Introduction to digital image processing
Introduction to digital image processingIntroduction to digital image processing
Introduction to digital image processing
 
High pass filter
High pass filterHigh pass filter
High pass filter
 
Low pass filter
Low pass filterLow pass filter
Low pass filter
 
Low pass filters
Low pass filtersLow pass filters
Low pass filters
 
Digital image processing question bank
Digital image processing question bankDigital image processing question bank
Digital image processing question bank
 
Lecture 3b: Decision Trees (1 part)
Lecture 3b: Decision Trees (1 part)Lecture 3b: Decision Trees (1 part)
Lecture 3b: Decision Trees (1 part)
 
Color image processing Presentation
Color image processing PresentationColor image processing Presentation
Color image processing Presentation
 
Color models
Color modelsColor models
Color models
 
10 color image processing
10 color image processing10 color image processing
10 color image processing
 
Color Image Processing
Color Image ProcessingColor Image Processing
Color Image Processing
 
Colour models
Colour modelsColour models
Colour models
 
Color models
Color modelsColor models
Color models
 
Filters
FiltersFilters
Filters
 
Color Models Computer Graphics
Color Models Computer GraphicsColor Models Computer Graphics
Color Models Computer Graphics
 
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain RatioLecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
Lecture 4 Decision Trees (2): Entropy, Information Gain, Gain Ratio
 
Smoothing Filters in Spatial Domain
Smoothing Filters in Spatial DomainSmoothing Filters in Spatial Domain
Smoothing Filters in Spatial Domain
 
Color Models
Color ModelsColor Models
Color Models
 
Enhancement in spatial domain
Enhancement in spatial domainEnhancement in spatial domain
Enhancement in spatial domain
 
Ecommerce website proposal
Ecommerce website proposalEcommerce website proposal
Ecommerce website proposal
 

Similar to Digital image processing img smoothning

05_Spatial_Filtering.ppt
05_Spatial_Filtering.ppt05_Spatial_Filtering.ppt
05_Spatial_Filtering.ppt
pawankamal3
 
2.spatial filtering
2.spatial filtering2.spatial filtering
2.spatial filtering
mukesh bhardwaj
 
SPATIAL FILTER
SPATIAL FILTERSPATIAL FILTER
1 of 6 LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
1 of 6  LAB 5 IMAGE FILTERING ECE180 Introduction to.docx1 of 6  LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
1 of 6 LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
mercysuttle
 
Image processing spatialfiltering
Image processing spatialfilteringImage processing spatialfiltering
Image processing spatialfiltering
John Williams
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
shabanam tamboli
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
Wael Sharba
 
2. filtering basics
2. filtering basics2. filtering basics
2. filtering basics
Atul Kumar Jha
 
CNN_AH.pptx
CNN_AH.pptxCNN_AH.pptx
CNN_AH.pptx
ssuserc755f1
 
CNN_AH.pptx
CNN_AH.pptxCNN_AH.pptx
CNN_AH.pptx
ssuserc755f1
 
Notes on image processing
Notes on image processingNotes on image processing
Notes on image processing
Mohammed Kamel
 
Spatial domain filtering.ppt
Spatial domain filtering.pptSpatial domain filtering.ppt
Spatial domain filtering.ppt
ssuser4bbfb1
 
Image enhancement
Image enhancementImage enhancement
Image enhancement
Kuppusamy P
 
Gabor Filter
Gabor FilterGabor Filter
ACMP340.pptx
ACMP340.pptxACMP340.pptx
ACMP340.pptx
FelixGathage
 
Digital Image processing
Digital Image processingDigital Image processing
Digital Image processing
Amir Hossain
 
chAPTER1CV.pptx is abouter computer vision in artificial intelligence
chAPTER1CV.pptx is abouter computer vision in artificial intelligencechAPTER1CV.pptx is abouter computer vision in artificial intelligence
chAPTER1CV.pptx is abouter computer vision in artificial intelligence
shesnasuneer
 
computervision1.pptx its about computer vision
computervision1.pptx its about computer visioncomputervision1.pptx its about computer vision
computervision1.pptx its about computer vision
shesnasuneer
 
4 image enhancement in spatial domain
4 image enhancement in spatial domain4 image enhancement in spatial domain
4 image enhancement in spatial domain
Prof. Dr. Subhasis Bose
 
Lecture_Spatial_Filters.pptx
Lecture_Spatial_Filters.pptxLecture_Spatial_Filters.pptx
Lecture_Spatial_Filters.pptx
mahirazainab
 

Similar to Digital image processing img smoothning (20)

05_Spatial_Filtering.ppt
05_Spatial_Filtering.ppt05_Spatial_Filtering.ppt
05_Spatial_Filtering.ppt
 
2.spatial filtering
2.spatial filtering2.spatial filtering
2.spatial filtering
 
SPATIAL FILTER
SPATIAL FILTERSPATIAL FILTER
SPATIAL FILTER
 
1 of 6 LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
1 of 6  LAB 5 IMAGE FILTERING ECE180 Introduction to.docx1 of 6  LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
1 of 6 LAB 5 IMAGE FILTERING ECE180 Introduction to.docx
 
Image processing spatialfiltering
Image processing spatialfilteringImage processing spatialfiltering
Image processing spatialfiltering
 
Spatial filtering
Spatial filteringSpatial filtering
Spatial filtering
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
 
2. filtering basics
2. filtering basics2. filtering basics
2. filtering basics
 
CNN_AH.pptx
CNN_AH.pptxCNN_AH.pptx
CNN_AH.pptx
 
CNN_AH.pptx
CNN_AH.pptxCNN_AH.pptx
CNN_AH.pptx
 
Notes on image processing
Notes on image processingNotes on image processing
Notes on image processing
 
Spatial domain filtering.ppt
Spatial domain filtering.pptSpatial domain filtering.ppt
Spatial domain filtering.ppt
 
Image enhancement
Image enhancementImage enhancement
Image enhancement
 
Gabor Filter
Gabor FilterGabor Filter
Gabor Filter
 
ACMP340.pptx
ACMP340.pptxACMP340.pptx
ACMP340.pptx
 
Digital Image processing
Digital Image processingDigital Image processing
Digital Image processing
 
chAPTER1CV.pptx is abouter computer vision in artificial intelligence
chAPTER1CV.pptx is abouter computer vision in artificial intelligencechAPTER1CV.pptx is abouter computer vision in artificial intelligence
chAPTER1CV.pptx is abouter computer vision in artificial intelligence
 
computervision1.pptx its about computer vision
computervision1.pptx its about computer visioncomputervision1.pptx its about computer vision
computervision1.pptx its about computer vision
 
4 image enhancement in spatial domain
4 image enhancement in spatial domain4 image enhancement in spatial domain
4 image enhancement in spatial domain
 
Lecture_Spatial_Filters.pptx
Lecture_Spatial_Filters.pptxLecture_Spatial_Filters.pptx
Lecture_Spatial_Filters.pptx
 

Recently uploaded

Cyber Recovery Wargame
Cyber Recovery WargameCyber Recovery Wargame
Cyber Recovery Wargame
Databarracks
 
So You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental DowntimeSo You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental Downtime
ScyllaDB
 
An All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS MarketAn All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS Market
ScyllaDB
 
ThousandEyes New Product Features and Release Highlights: June 2024
ThousandEyes New Product Features and Release Highlights: June 2024ThousandEyes New Product Features and Release Highlights: June 2024
ThousandEyes New Product Features and Release Highlights: June 2024
ThousandEyes
 
Multivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back againMultivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back again
Kieran Kunhya
 
Chapter 5 - Managing Test Activities V4.0
Chapter 5 - Managing Test Activities V4.0Chapter 5 - Managing Test Activities V4.0
Chapter 5 - Managing Test Activities V4.0
Neeraj Kumar Singh
 
Must Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during MigrationMust Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during Migration
Mydbops
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving
 
APJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes WebinarAPJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes Webinar
ThousandEyes
 
DynamoDB to ScyllaDB: Technical Comparison and the Path to Success
DynamoDB to ScyllaDB: Technical Comparison and the Path to SuccessDynamoDB to ScyllaDB: Technical Comparison and the Path to Success
DynamoDB to ScyllaDB: Technical Comparison and the Path to Success
ScyllaDB
 
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My IdentityCNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
Cynthia Thomas
 
CTO Insights: Steering a High-Stakes Database Migration
CTO Insights: Steering a High-Stakes Database MigrationCTO Insights: Steering a High-Stakes Database Migration
CTO Insights: Steering a High-Stakes Database Migration
ScyllaDB
 
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
UiPathCommunity
 
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State StoreElasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
ScyllaDB
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
FilipTomaszewski5
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
AlexanderRichford
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
UiPathCommunity
 
From NCSA to the National Research Platform
From NCSA to the National Research PlatformFrom NCSA to the National Research Platform
From NCSA to the National Research Platform
Larry Smarr
 
An Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise IntegrationAn Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise Integration
Safe Software
 

Recently uploaded (20)

Cyber Recovery Wargame
Cyber Recovery WargameCyber Recovery Wargame
Cyber Recovery Wargame
 
So You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental DowntimeSo You've Lost Quorum: Lessons From Accidental Downtime
So You've Lost Quorum: Lessons From Accidental Downtime
 
An All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS MarketAn All-Around Benchmark of the DBaaS Market
An All-Around Benchmark of the DBaaS Market
 
ThousandEyes New Product Features and Release Highlights: June 2024
ThousandEyes New Product Features and Release Highlights: June 2024ThousandEyes New Product Features and Release Highlights: June 2024
ThousandEyes New Product Features and Release Highlights: June 2024
 
Multivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back againMultivendor cloud production with VSF TR-11 - there and back again
Multivendor cloud production with VSF TR-11 - there and back again
 
Chapter 5 - Managing Test Activities V4.0
Chapter 5 - Managing Test Activities V4.0Chapter 5 - Managing Test Activities V4.0
Chapter 5 - Managing Test Activities V4.0
 
Must Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during MigrationMust Know Postgres Extension for DBA and Developer during Migration
Must Know Postgres Extension for DBA and Developer during Migration
 
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance PanelsNorthern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
Northern Engraving | Modern Metal Trim, Nameplates and Appliance Panels
 
APJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes WebinarAPJC Introduction to ThousandEyes Webinar
APJC Introduction to ThousandEyes Webinar
 
DynamoDB to ScyllaDB: Technical Comparison and the Path to Success
DynamoDB to ScyllaDB: Technical Comparison and the Path to SuccessDynamoDB to ScyllaDB: Technical Comparison and the Path to Success
DynamoDB to ScyllaDB: Technical Comparison and the Path to Success
 
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My IdentityCNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
CNSCon 2024 Lightning Talk: Don’t Make Me Impersonate My Identity
 
CTO Insights: Steering a High-Stakes Database Migration
CTO Insights: Steering a High-Stakes Database MigrationCTO Insights: Steering a High-Stakes Database Migration
CTO Insights: Steering a High-Stakes Database Migration
 
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
TrustArc Webinar - Your Guide for Smooth Cross-Border Data Transfers and Glob...
 
Session 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdfSession 1 - Intro to Robotic Process Automation.pdf
Session 1 - Intro to Robotic Process Automation.pdf
 
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State StoreElasticity vs. State? Exploring Kafka Streams Cassandra State Store
Elasticity vs. State? Exploring Kafka Streams Cassandra State Store
 
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeckPoznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
Poznań ACE event - 19.06.2024 Team 24 Wrapup slidedeck
 
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
QR Secure: A Hybrid Approach Using Machine Learning and Security Validation F...
 
Automation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI AutomationAutomation Student Developers Session 3: Introduction to UI Automation
Automation Student Developers Session 3: Introduction to UI Automation
 
From NCSA to the National Research Platform
From NCSA to the National Research PlatformFrom NCSA to the National Research Platform
From NCSA to the National Research Platform
 
An Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise IntegrationAn Introduction to All Data Enterprise Integration
An Introduction to All Data Enterprise Integration
 

Digital image processing img smoothning

  • 1. Presentation over image smoothing and sharpening -Vinay Kumar Gupta 0700410088
  • 2. What is a Digital Image?  A digital image is a representation of a two- dimensional image as a finite set of digital values, called picture elements or pixels.
  • 3. Why Digital Image Processing? Digital image processing focuses on two major tasks:  Improvement of pictorial information for human interpretation.  Processing of image data for storage, transmission and representation for autonomous machine perception
  • 4. Applications: The use of digital image processing techniques has exploded and they are now used for all kinds of tasks in all kinds of areas:  Image enhancement/restoration  Artistic effects  Medical visualisation  Industrial inspection  Law enforcement  Human computer interfaces
  • 5. Examples: The Hubble Telescope Launched in 1990 the Hubble telescope can take images of very distant objects However, an incorrect mirror made many of Hubble’s images useless. Image processing techniques were used to fix this
  • 6. Examples: HCI Try to make human computer interfaces more natural  Face recognition  Gesture recognition Does anyone remember the user interface from “Minority Report”?
  • 7. Key Stages in Digital Image Processing: Image Morphological Restoration Processing Image Enhancement Segmentation Image Object Acquisition Recognition Problem Domain Representation & Description Colour Image Image Processing Compression
  • 8. Image Representation Before we discuss image acquisition recall that a digital image is col composed of M rows and N columns of pixels each storing a value Pixel values are most often grey levels in the range 0-255(black-white) f (row, col) row
  • 12. What Is Image Enhancement? Image enhancement is the process of making images more useful The reasons for doing this include:  Highlighting interesting detail in images  Removing noise from images  Making images more visually appealing
  • 13. Spatial & Frequency Domains There are two broad categories of image enhancement techniques  Spatial domain techniques  Direct manipulation of image pixels  Frequency domain techniques  Manipulation of Fourier transform or wavelet transform of an image For the moment we will concentrate on techniques that operate in the spatial domain
  • 14. Image Histograms The histogram of an image shows us the distribution of grey levels in the image Frequencies Grey Levels
  • 15. Spatial filtering techniques:  Neighbourhood operations  What is spatial filtering?  Smoothing operations  What happens at the edges?
  • 16. Neighbourhood Operations Neighbourhood operations simply operate on a larger neighbourhood of pixels than point operations Origin x Neighbourhoods are mostly a rectangle around a central pixel Any size rectangle and any shape filter (x, y) Neighbourhood are possible y Image f (x, y)
  • 17. Simple Neighbourhood Operations Some simple neighbourhood operations include:  Min: Set the pixel value to the minimum in the neighbourhood  Max: Set the pixel value to the maximum in the neighbourhood  Median: The median value of a set of numbers is the midpoint value in that set (e.g. from the set [1, 7, 15, 18, 24] 15 is the median). Sometimes the median works better than the average
  • 18. The Spatial Filtering Process Origin x a b c r s t d g e h f i * u x v y w z Original Image Filter Simple 3*3 Pixels e 3*3 Filter Neighbourhood eprocessed = v*e + r*a + s*b + t*c + u*d + w*f + y Image f (x, y) x*g + y*h + z*i The above is repeated for every pixel in the original image to generate the filtered image
  • 19. Smoothing Spatial Filters  One of the simplest spatial filtering operations we can perform is a smoothing operation  Simply average all of the pixels in a neighbourhood around a central value  Especially useful 1/ 1/ 1/ 9 9 9 in removing noise from images  Also useful for 1/ 9 1/ 9 1/ 9 Simple highlighting gross averaging detail 1/ 1/ 1/ filter 9 9 9
  • 20. Smoothing Spatial Filtering Origin x 104 100 108 1/ 1/ 1/ 9 9 9 1/ 1/ 1/ 99 106 98 95 90 85 * 1/ 9 1/ 9 1/ 9 9 9 9 1/ 1/ 1/ 104 100 108 Original Image Filter 9 9 9 Simple 3*3 1/ 99 106 198 1/ /9 3*3 Smoothing Pixels 9 9 Neighbourhood 195 /9 1/ 90 185 /9 Filter 9 e = 1/9*106 + 1/ *104 + 1/ *100 + 1/ *108 + 9 9 9 1/ *99 + 1/ *98 + 9 9 y Image f (x, y) 1/ *95 + 1/ *90 + 1/ *85 9 9 9 = 98.3333 The above is repeated for every pixel in the original image to generate the smoothed image
  • 21. Sharpening Spatial Filters Previously we have looked at smoothing filters which remove fine detail Sharpening spatial filters seek to highlight fine detail  Remove blurring from images  Highlight edges Sharpening filters are based on spatial differentiation
  • 22. Spatial Differentiation Differentiation measures the rate of change of a function Let’s consider a simple 1 dimensional example
  • 24. 1st Derivative The formula for the 1st derivative of a function is as follows: f f ( x 1) f ( x) x It’s just the difference between subsequent values and measures the rate of change of the function.
  • 25. 2nd Derivative The formula for the 2nd derivative of a function is as follows: 2 f 2 f ( x 1) f ( x 1) 2 f ( x) x Simply takes into account the values both before and after the current value
  • 26. Using Second Derivatives For Image Enhancement The 2nd derivative is more useful for image enhancement than the 1st derivative  Stronger response to fine detail  Simpler implementation  We will come back to the 1st order derivative later on The first sharpening filter we will look at is the Laplacian  Isotropic  One of the simplest sharpening filters  We will look at a digital implementation
  • 27. The Laplacian The Laplacian is defined as follows: 2 2 2 f f f 2 2 x y where the partial 1st order derivative in the x direction is defined as follows: 2 f 2 f ( x 1, y ) f ( x 1, y ) 2 f ( x, y ) x and in the y direction as follows: 2 f 2 f ( x, y 1) f ( x, y 1) 2 f ( x, y ) y
  • 28. The Laplacian (cont…) So, the Laplacian can be given as follows: 2 f [ f ( x 1, y ) f ( x 1, y ) f ( x, y 1) f ( x, y 1)] 4 f ( x, y) We can easily build a filter based on this 0 1 0 1 -4 1 0 1 0
  • 29. The Laplacian (cont…) Applying the Laplacian to an image we get a new image that highlights edges and other discontinuities Original Laplacian Laplacian Image Filtered Image Filtered Image Scaled for Display
  • 30. But That Is Not Very Enhanced! The result of a Laplacian filtering is not an enhanced image We have to do more work in order to get our final image Subtract the Laplacian result from the original image to generate our final sharpened enhanced image Laplacian Filtered Image 2 Scaled for Display g ( x, y ) f ( x, y ) f
  • 31. Laplacian Image Enhancement - = Original Laplacian Sharpened Image Filtered Image Image In the final sharpened image edges and fine detail are much more obvious
  • 33. Simplified Image Enhancement The entire enhancement can be combined into a single filtering operation 2 g ( x, y ) f ( x, y ) f f ( x, y) [ f ( x 1, y) f ( x 1, y) f ( x, y 1) f ( x, y 1) 4 f ( x, y)] 5 f ( x, y) f ( x 1, y) f ( x 1, y) f ( x, y 1) f ( x, y 1)
  • 34. Simplified Image Enhancement (cont…) This gives us a new filter which does the whole job for us in one step 0 -1 0 -1 5 -1 0 -1 0
  • 35. The Big Idea = Any function that periodically repeats itself can be expressed as a sum of sines and cosines of different frequencies each multiplied by a different coefficient – a Fourier series
  • 36. The Discrete Fourier Transform (DFT) The Discrete Fourier Transform of f(x, y), for x = 0, 1, 2…M-1 and y = 0,1,2…N-1, denoted by F(u, v), is given by the equation: M 1N 1 j 2 ( ux / M vy / N ) F (u , v) f ( x, y )e x 0 y 0 for u = 0, 1, 2…M-1 and v = 0, 1, 2…N-1.
  • 37. DFT & Images The DFT of a two dimensional image can be visualised by showing the spectrum of the images component frequencies DFT
  • 38. The DFT and Image Processing To filter an image in the frequency domain: 1. Compute F(u,v) the DFT of the image 2. Multiply F(u,v) by a filter function H(u,v) 3. Compute the inverse DFT of the result
  • 39. Some Basic Frequency Domain Filters Low Pass Filter High Pass Filter
  • 40. Smoothing Frequency Domain Filters Smoothing is achieved in the frequency domain by dropping out the high frequency components The basic model for filtering is: G(u,v) = H(u,v)F(u,v) where F(u,v) is the Fourier transform of the image being filtered and H(u,v) is the filter transform function Low pass filters – only pass the low frequencies, drop the high ones.
  • 41. Ideal Low Pass Filter Simply cut off all high frequency components that are a specified distance D0 from the origin of the transform changing the distance changes the behaviour of the filter
  • 42. Ideal Low Pass Filter (cont…) The transfer function for the ideal low pass filter can be given as: 1 if D(u, v) D0 H (u, v) 0 if D(u, v) D0 where D(u,v) is given as: 2 2 1/ 2 D(u, v) [(u M / 2) (v N / 2) ]
  • 43. Butterworth Low pass Filters The transfer function of a Butterworth lowpass filter of order n with cutoff frequency at distance D0 from the origin is defined as: 1 H (u , v) 1 [ D(u , v) / D0 ]2 n
  • 44. Gaussian Low pass Filters The transfer function of a Gaussian lowpass filter is defined as: D2 (u ,v ) / 2 D0 2 H (u, v) e
  • 45. Lowpass Filtering Examples A low pass Gaussian filter is used to connect broken text
  • 46. Sharpening in the Frequency Domain Edges and fine detail in images are associated with high frequency components High pass filters – only pass the high frequencies, drop the low ones. High pass frequencies are precisely the reverse of low pass filters, so: Hhp(u, v) = 1 – Hlp(u, v)
  • 47. Ideal High Pass Filters The ideal high pass filter is given as: 0 if D(u, v) D0 H (u, v) 1 if D(u, v) D0 where D0 is the cut off distance as before
  • 48. Butterworth High Pass Filters The Butterworth high pass filter is given as: 1 H (u , v) 2n 1 [ D0 / D(u , v)] where n is the order and D0 is the cut off distance as before
  • 49. Gaussian High Pass Filters The Gaussian high pass filter is given as: 2 D2 (u ,v ) / 2 D0 H (u, v) 1 e where D0 is the cut off distance as before
  • 50. Frequency Domain Filtering & Spatial Domain Filtering Similar jobs can be done in the spatial and frequency domains Filtering in the spatial domain can be easier to understand Filtering in the frequency domain can be much faster – especially for large images
  翻译: