MATLAB: How to handle montage image

image analysisimage processingImage Processing Toolbox

Hello everyone.
After using the "montage" function, how can I apply the rgb2gray to the montage image?
Thanks in advance!

Best Answer

Use imtile() instead.
rgbMulti = imtile(...............
grayImage = rgb2gray(rgbMulti);
Related Question