Azzera filtri
Azzera filtri

Change a range of pixel values

3 visualizzazioni (ultimi 30 giorni)
Selina Loh
Selina Loh il 30 Ott 2017
Risposto: Peter Chang il 30 Ott 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.

Risposte (2)

Matteo Sangermani
Matteo Sangermani il 30 Ott 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 il 30 Ott 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!

Translated by