Hi guys, i basically want to implement steps in pre-processing stage in one of my journal. The fist step is to do morpological filtering : opening and closing operators. I have read in opencv docs, that we can do morphological filtering by using custome structuring element with function getStructuringElement(int shape, Size ksize, Point anchor=Point(-1,-1)).
Because in my journal, it is said "... 3 by 3 disk structuring element", does it mean it (3 by 3) corresponds to ksize parameter in getStructuringElement function ? or does it mean anything else ?
Thank you.