MATLAB: Converting matlab image to jpg image

converting matlaab generated image to jpeg

help me out, i converted one image into some form using matlab, but i want to save that image in '.jpg' form, because i need to read image for further processing..

Best Answer

You could use the GUI or
doc saveas
saveas(h,'filename.jpg')
href = ""<http://www.mathworks.com/help/matlab/ref/saveas.html</a>>
or use
imwrite
Related Question