MATLAB: How to adjust the size of the cross

retag

when I use 'plot' to draw a cross on a pixel in image, I found the cross sign is a bit large size that cover to much pixels, so is there someway to shrink it? Thank you

Best Answer

You could set the line's 'MarkerSize' to be smaller.
h = plot(..)
set(h,'MarkerSize',10);