I am working on Human Protein Atlas competiton on kaggle . There are RGBY images in dataset. I am combining the RGBY images using cv to an array. I want to create an image of thi s input array and return it in get_x function or maybe pass this array directly. I don’t know how to do that. Please help.
colors = ['red','green','blue','yellow']
flags = cv2.IMREAD_GRAYSCALE
img = [cv2.imread(fname+'_'+color+'.png', flags).astype(np.float32)/255
for color in colors]
np.stack(img, axis=-1)