I am trying to combine two different RGB images into a single 6 channel image (Tiff is best) using nothing but Python.
What I have is an RGB image taken from a normal camera as well as another RGB image that is a normal map based on a SfM reconstruction. The images have identical dimensions and I simply need to overlay one image on the other so that I can run an image classification based on the combined channel information.
I've been looking into using openCV for this, but I'm getting hung up on the documentation. I'm a geologist, not a programmer so my math skills and programming knowledge is mediocre at best.
I've been doing some digging and what I've tried so far is using OpenCV to create an array for each image, then using numpy to concatenate the resulting matrices and using PIL to put them together into an image. Trouble is the image shows both images side by side or on top of one-another rather than as a 6 channel image.
I don't think PIL can do what I need it to do, but I'm not sure how to use the openCV mixChannels function or how to even create a MAT in Python as the Mat::create documentation is entirely in C++.
I've come across another thread on this site, but they weren't really answered either as far as I can tell:
See here
cv2. merge() is used to merge several single-channel images into a colored/multi-channel image. Parameters: mv: Input vector of matrices to be merged.
Multi-channel images Thus, it is a logical channel of stored data, and not necessarily a physical channel (as all the image channels could have been measured by a single photomultiplier, for instance).
First, select an image as input and read it using the cv2. imread() function. Then extract the dimensions of the image by using img. shape command and store the value into h, w, channels respectively.
With four channels, it is often an alpha channel that specifies the opaque level of that pixel.
NumPy has you covered.
Your inputs are probably both shape (1200, 900, 3)
(check with .shape
), and you want (1200, 900, 6)
as output - this is asking to concatenate the two arrays along the third axis. Therefore
np.concatenate((im1, im2), axis=2) # axes are 0-indexed, i.e. 0, 1, 2
will do precisely what you want.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With