Info

This question is closed. Reopen it to edit or answer.

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

1 view (last 30 days)
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)

Image Analyst
Image Analyst on 7 Jul 2013
Edited: Image Analyst on 7 Jul 2013
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.

Community Treasure Hunt

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

Start Hunting!