MATLAB: How to plot in red colour on image

imageplot

hi.. i have coordinate (x y)on image. i want to plot to red color on that image. how to do this. thanks

Best Answer

Maybe you mean
plot(columnX, rowY, 'r+', 'MarkerSize', 30, 'LineWidth', 3);
If not, describe what you mean by "plot to red".
Related Question