Need help combining two 3 channel images into 6 channel image Python

假如想象 提交于 2021-01-27 05:24:14

问题


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++.

RGB Image

Normals Image

I've come across another thread on this site, but they weren't really answered either as far as I can tell:

See here


回答1:


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.



来源:https://stackoverflow.com/questions/43264816/need-help-combining-two-3-channel-images-into-6-channel-image-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!