分析 下列 matlab 程序后回答问题 img1=imread('C:\Users\user\Desktop\sun_teaching\2020\test image\pout.tif'); subplot(2,3,1),imshow(img1); subplot(2,3,2),img2=img1+100;imshow(img2); subplot(2,3,4),imhist(img1); subplot(2,3,5),imhist(img2); img3=imadjust(img1,[0.3 0.7],[0 1], 0.8); subplot(2,3,3),imshow (img3); subplot(2,3,6),imhist(img3); 下列叙述何者正确 ?