🤖
Aadv1k's guide to Computer Vision
  • Introduction
  • Convolutions and Filters
  • Image smoothing
    • Box (Mean) Filter
    • Gaussian Filter
    • Median filter
    • Bilateral filter
  • Edge Detection
    • Sharpening
    • Laplacian filter
    • Sobel operator
  • Thresholding
  • Affine Transformations
    • Scaling
Powered by GitBook
On this page

Image smoothing

What is image smoothing?

Previously we learnt about filters smoothing can define any filter which serves to reduce the amount of extraneous information or noise Within the image, such functions come in various shapes and forms, with each having their own pros and cons. Smoothing functions all work in a similar manner, they derive some kind of average or weighted value from the set of pixels within the kernel area and set the current pixel to that value.

So, let's take a look at how they are implemented.

PreviousConvolutions and FiltersNextBox (Mean) Filter

Last updated 1 year ago