Giter Club home page Giter Club logo

image-denoising-using-convolutional-auto-encoders's Introduction

Denoising using Convolutional Auto-encoders

Colab notebook

Pretrained models are available here

One of the fundamental challenges in the field of image processing and computer vision is image denoising , where the underlying goal is to estimate the original image by suppressing noise from a noise-contaminated version of the image.It is a well-studied problem in Computer Vision.

For this task a fully Convolutional auto-encoder network was used. The network consists of multiple convolution and transposed convolution(deconvolution) layers, learning mapping from corrupted images to original images.

  • The convolutional layers capture the contents of the image while eliminating the noise.
  • The transposed convolution layers upsample the feature maps and *recover the details of the image.

Skip Connections

Skip connections are added from a convolutional layer to its corresponding mirrored transposed convolution layer. These skip connections exhibit two major advantages:

  • They pass image details from convolutional layers to transposed convolution layers which is useful in recovering the clean image.
  • They allow signal to be back-propagated directly to the layers at the starting and hence tackling the problem of vanishing gradients.

Architecture

  • The network is fully convolutional and transposed convolution(deconvolution).

  • The convolutional and transposed convolution layers are symmetric.
  • ReLUs used after every convolutional and transposed convolution layer.
  • Pooling/unpooling is not used as pooling discards useful image details that are useful for these kind of tasks.
  • Skip connections are added from a convolutional layes to its corresponding transposed convolution layer.

Image denoising

  • CIFAR-10 dataset is used in this task.
  • An additive Gaussian noise with zero mean and standard deviation of 0.1, 0.3, 0.5, 0.7, 1.0 is used in this task.
  • Peak signal-to-noise ratio(PSNR) is used to compare the performance. It is given by
psnr = 20 * np.log10(max_pixel / np.sqrt(mse))

mse- mean square error; max_pixel- Max value of pixel in an image

Results

  • Network performance on different values of standard deviation:

Images showing original images(row 1), noisy images(row2), denoised images(row 3) for standard deviation 0.1

More results are shown in the results.pdf

References

image-denoising-using-convolutional-auto-encoders's People

Contributors

niranths avatar

Watchers

 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.