Borrar filtros
Borrar filtros

Omitting negative pixels in the image representation

4 visualizaciones (últimos 30 días)
med-sweng
med-sweng el 16 de Feb. de 2014
Comentada: Image Analyst el 18 de Feb. de 2014
Say that I have an image where there are some pixels which values are negative. How can I omit those from the image representation in `MATLAB`?
Thanks.
  1 comentario
Image Analyst
Image Analyst el 16 de Feb. de 2014
What's going on? You already had a discussion on this going in http://www.mathworks.com/matlabcentral/answers/116236#comment_196593 and then you posted the same thing twice more. I deleted the version that no one has answered yet. Why would you want to look for answers in three separate threads?????

Iniciar sesión para comentar.

Respuestas (1)

Wayne King
Wayne King el 16 de Feb. de 2014
Depending on your data and application, you can just take the absolute value. If that doesn't work you can set all the negative values to zero using logical indexing
X = randn(256);
X(X<0) = 0;
  4 comentarios
med-sweng
med-sweng el 18 de Feb. de 2014
Removing them from the display
Image Analyst
Image Analyst el 18 de Feb. de 2014
Wayne already gave you code for that. Look above.

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by