"Pixel Color"

14 次查看(过去 30 天)
romain dalidet
romain dalidet 2017-6-29
Hello everyone, basically I have a series of images like this one :
Which is an imagesc of a 256x256 matrix. Every values of the matrix that are "inside" the hexagon are greater than 0 while other values equal 0. What I would like to do is get every pixel coresponding to 0 to be white, not blue. I could use "paint" but I have a thousand of images that looks like this one ... I've tried to modify the colormap using colormapeditor but the value difference between blue pixels inside the hexagon and yellow pixels is more 10^6, which gives me a result like this :
Any advice would be good, thanks in advance !

采纳的回答

Adam
Adam 2017-6-29
data = magic(30);
figure; h = imagesc( data );
h.AlphaData = data > 100;
You can do the same in your case, just keep the image handle and create a mask for the alpha data. This assumes your underlying axes are white though because it makes the data transparent, not white, but if your axes are white then it looks white.
  1 个评论
romain dalidet
romain dalidet 2017-6-29
It is working great, thank you ! (I made the line more wide so we don't see the pixelisation)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Color and Styling 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by