Answers for "transform image to rgb python"

0

transform image to rgb python

rgb = np.zeros((img.shape[0], img.shape[1], 3))
rgb[:,:,0] = img
rgb[:,:,1] = img
rgb[:,:,2] = img
Posted by: Guest on October-26-2021

Code answers related to "transform image to rgb python"

Python Answers by Framework

Browse Popular Code Answers by Language