I have two images img1 and img2 of shape (20,20,3), that I have read using OpenCV.
I have applied the following statement on the two images:
np.stack([img1,img2], axis=2)
and got the following shape:
(20, 20, 2, 3)
Does that mean that we now have 2 20x20x3 images? Are they (images and their channels) like put beside each other?
Thanks.