MATLAB: Imshow in appdesigner

image processing

Looking to convert a GUI into the AppDesigner platform, I am not able to execute the 'imshow' utility in appdesigner, any ideas?

Best Answer

The ability to show images is new in R2016b, so you need to be on that release.
You use imshow by explicitly parenting to the uiaxes.
imshow('cameraman.tif','Parent',app.UIAxes)