MATLAB: How can I display the new picture after the algorithm

image processing

I have upload one picture and calculate the algorithm now how can I visualize the new picure imshow(…) or imwrite?

Best Answer

imshow() or image() or imagesc() can all be used. imwrite() is for writing an image to a file.
Related Question