MATLAB: Background for design gui

guiimage processing

How do I use background for gui design?

Best Answer

In the OpeningFcn callback of your GUI add below code
BkImage = importdata('backgnd.jpg'); %Read the image file
axes(handles.BkAxes);
image(BkImage);