ImageJ has the option of merging the channels, even if there is no color for some of the channels (you can keep the value as None). This means you can pick red channel from one image and blue from another, and merge them together to get a new image. However, i could not find such a thing in Python, more specifically in OpenCV. There is the method cv2.merge(), but it requires three different parts (blue, red and green) which should be provided from cv2.split(). Is it possible to merge two different channels, for example blue from an image and green from another, in Python?
Thanks