Vrai faux tableau en noir et blanc

#should convert true false to black white first with this
mask = true_false_array.astype('uint8')*255
#then mask
cv2.bitwise_and(img, img, mask = mask)
Magnificent Moth