I have a tif image with lots of small white pixels dispersed throughout on a dark bluish background. How can I use Matlab to detect those small white pixels and change them into the same blue shade as my image background? Please note that my image contains other colours that I want to keep unchanged. I just need to get rid of the white pixels and merge them with my bluish background. Thanks!
Are there other white pixels that need to be retained? If there are, can they be distinguished by size? Or is it necessary to look at surrounding color as well to determine whether to get rid of any particular small white pixel?
Yes, there are other large white pixels that I want to retain. It is easy to differentiate between the large and small pixels by size because the size difference is quite big. I just need to get rid of the small white ones by merging them with the bluish background colour that I have. Thanks.
Threshold on all three RGB channels being sufficiently large, in order to get true for white and false for non-white. bwareafilt() to get regions below a particular size. What remains will be a binary map of locations that need to be filled in with the background color.
It is usually a nuisance to fill a 3D array based upon a 2D mask, so often the easiest is
You can use regionfill(), or you can treat them as salt and pepper noise and use my attached demo which uses a modified median filter. Attach your image if you need more help.
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
0 Comments
Sign in to comment.