Why is the background of my custom marker changing color?
1 次查看(过去 30 天)
显示 更早的评论
Hello,
I wanted to use images as custom markers for my plot. I have attached one of the images that I use as my marker. It is a binary image. however when I use it as a marker, the background of only the image becomes yellow. Is there any way to fix this?
x = 5:5:125;
y = 0:0.04:1; %some variation of the data
% Load the marker image:
markersize = [10,0.1];
x_low = x - markersize(1)/2;
x_high = x + markersize(1)/2;
y_low = y - markersize(2)/2;
y_high = y + markersize(2)/2;
for k = 1:length(x)
marker = imread(['some_path\verify_threshold_images\', num2str(k),'cropped.tif']);
plot(x,y)
hold on
imagesc([x_low(k) x_high(k)], [y_low(k) y_high(k)], marker);
end
axis ([0 140 0 1]);
hold off
9 个评论
KALYAN ACHARJYA
2019-10-15
编辑:KALYAN ACHARJYA
2019-10-15
Sorry, I didnot get the question? Can you make it more simple (if possible)?
Adam
2019-10-15
8.jpg is the jpg version of the image though, not the one you would plot from Matlab (on its own, without all the other stuff on the plot). Plus its a jpg, not a tiff
采纳的回答
Walter Roberson
2019-10-15
imagesc is primarily for pseudocolor images, especially ones in which the data is a range of values that is to be distributed over the current color map. You are not calling colormap() so you are getting whatever colormap happens to be in effect.
You should convert the cropped image into rgb and image() that. im2uint8() then repmat() 1,1,3 to create the rgb image.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!