So, I generate a binary (well, really gray, 8 bit used as binary) image with python and opencv2, writing a small number of polygons to the image, and then expanding the image using the kernel. However, the source and destination images always end up the same, no matter which kernel I use. Any thoughts?
from matplotlib import pyplot import numpy as np import cv2 binary_image = np.zeros(image.shape,dtype='int8') for rect in list_of_rectangles: cv2.fillConvexPoly(binary_image, np.array(rect), 255) kernel = np.ones((11,11),'int') dilated = cv2.dilate(binary_image,kernel) if np.array_equal(dilated, binary_image): print("EPIC FAIL!!") else: print("eureka!!")
All I get is EPIC FAIL
!
Thanks!
source share