how to remove the noise applied to particular part of color image

i have read an image into some variable for ex; 'r' ,next applied the noise to r(i,j) where i and j is the position of the noise applied.now i want to remove the noise but applying the denoising method only at the region.how to do it explain it with an example.

Answers (1)

First bet a binary image that says where the noise is, for example by just specifying the rows and columns, or using imfreehand() and poly2mask(), or stdfilt() and thresholding, or whatever gives you the noise pixels. Then just do:
% Set back to original noise-free values.
noisyImage(binaryImage) = originalImage(binaryImage);
Repeat for each color channel.

This question is closed.

Asked:

KAS
on 7 Jul 2013

Closed:

on 20 Aug 2021

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!