MATLAB: Changing the background color

image processing

How do we change the background colour of a boundary in the image?

Best Answer

That really depends on the context. I have sometimes converted the image to greyscale and then called bwlabel. With that you can simply find out the label of the (1,1) position.
If you are talking about the background of a figure, look at the figure properties with fig_h=figure;get(fig_h) and see the options for yourself.
Related Question