Ask Your Question

Revision history [back]

Since you are using np.zeros, you are explicitly telling it to fill the complete image with zeros. Adding (0,0,0) at every position in the image results in a black image. Setting it all to (255,255,255) would be white, equalling np.ones() function. If you want color then you should assign values to the image positions.