有img0、img1、img2、img3四张图合成一张图img,现要img3呈现在img的左下角方位,下列可以...
A.matplotlib.pyplot.subplot(222);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img’)
B.matplotlib.pyplot.subplot(223);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img3’)
C.matplotlib.pyplot.subplot(222);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img3’)
D.matplotlib.pyplot.subplot(224);matplotlib.pyplot.imshow(img3);matplotlib.pyplot.title(‘img’)