OpenCV Filters - dilate

Dilates an image by using a specific structuring element. C++: void dilate(InputArray src, OutputArray dst, InputArray kernel, Point anchor=Point(-1,-1), int iterations=1, int borderType=BORDER_CONSTANT, const Scalar& borderValue=morphologyDefaultBorderValue() ) Python: cv2.dilate(src, kernel[, dst[, anchor[, iterations[, borderType[,...
Continue Reading...