8 public static partial class MorphologicalOperations
16 return M.Close(3, 3, 0f, 1f);
26 return M.Close(NeighborhoodWidth, NeighborhoodWidth, 0f, 1f);
36 int NeighborhoodHeight)
38 return M.Close(NeighborhoodWidth, NeighborhoodHeight, 0f, 1f);
50 int NeighborhoodHeight,
float MinThreshold,
float MaxThreshold)
53 Dilate(NeighborhoodWidth, NeighborhoodHeight, MaxThreshold).
54 Erode(NeighborhoodWidth, NeighborhoodHeight, MinThreshold);
64 return M.Close(Kernel, 0f, 1f);
78 Dilate(Kernel, MaxThreshold).
79 Erode(Kernel, MinThreshold);
88 return M.Close(3, 3, 0, 0x01000000);
98 return M.Close(NeighborhoodWidth, NeighborhoodWidth, 0, 0x01000000);
108 int NeighborhoodHeight)
110 return M.Close(NeighborhoodWidth, NeighborhoodHeight, 0, 0x01000000);
122 int NeighborhoodHeight,
int MinThreshold,
int MaxThreshold)
125 Dilate(NeighborhoodWidth, NeighborhoodHeight, MaxThreshold).
126 Erode(NeighborhoodWidth, NeighborhoodHeight, MinThreshold);
136 return M.Close(Kernel, 0, 0x01000000);
150 Dilate(Kernel, MaxThreshold).
151 Erode(Kernel, MinThreshold);
Shape for morphological operations.
Implements a Matrix, basic component for computations in Image Processing and Computer Vision.