how to remove the noise applied to particular part of color image
Info
This question is closed. Reopen it to edit or answer.
Show older comments
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
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.
1 Comment
ARUN SAI
on 7 Jul 2013
explain with example
This question is closed.
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!