Answers for "true false array to black and white"

0

true false array to black and white

#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)
Posted by: Guest on May-05-2020

Python Answers by Framework

Browse Popular Code Answers by Language