Posts by Adriana Pinto • 11 points
1 post
-
0
votes1
answer707
viewsQ: MATLAB image processing
How to convert an image to grayscale (Gray) to a color image (rgb)? img=im2double(imread('37_M.jpg')); figure(1), imshow(img,[]), title('original'); t=imgaussfilt3(img,0.2); figure(2), imshow(t,[]),…