Clear Filters
Clear Filters

Change a range of pixel values

3 views (last 30 days)
Selina Loh
Selina Loh on 30 Oct 2017
Answered: Peter Chang on 30 Oct 2017
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.

Answers (2)

Matteo Sangermani
Matteo Sangermani on 30 Oct 2017
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;

Peter Chang
Peter Chang on 30 Oct 2017
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;

Community Treasure Hunt

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

Start Hunting!