Change a range of pixel values
1 次查看(过去 30 天)
显示 更早的评论
Is it possible to change pixel values for pixel values of a certain range? The other pixels will remain the same value.
A(I >= 50 & I <= 110) = 0; I've tried this method but this stores in an array which the image cannot be displayed.
0 个评论
回答(2 个)
Matteo Sangermani
2017-10-30
Could you provide an example of the image? Which format are you using? Black-white or RGB? Otherwise is hard to help you
As far as I can see, it looks right. If "I" is your original image, the only recommendation I can give so far is to first initialize A, such as:
A = I;
0 个评论
Peter Chang
2017-10-30
Suppose X is a n x m-Matrix which contains the pixel values. xmin and xmax are the minimal and maximal value you defined, respectively. And the xnew is the new pixel value you wish to have. You can try:
X(X>=xmin & X<=xmax) = xnew;
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!