Richard

Results 3 comments of Richard

Thanks for getting back to me. No problem changing the title. I'll take a look at what you have mentioned and get back to you (probably tomorrow sometime). :)

@heyoeyo Thank you very much! I had actually tried using: ``` mask = np.random.choice([False, True], size=(640, 512)) mask_uint8 = mask.astype(np.uint8) * 255 kernel = cv2.getStructuringElement(cv2.MORPH_ELLIPSE, (11, 11)) dilated_mask = cv2.dilate(mask_uint8,...