10 public static partial class MorphologicalOperations
21 return M.HighlightFeatures_3x3(Threshold, 0f, 1f);
34 float MinThreshold,
float MaxThreshold)
42 Erode(3, 3, MinThreshold);
44 Image1.AbsoluteDifference(Image2);
45 Image1.Threshold(Threshold);
59 return M.HighlightFeatures_5x5(Threshold, 0f, 1f);
72 float MinThreshold,
float MaxThreshold)
80 Erode(5, 5, MinThreshold);
82 Image1.AbsoluteDifference(Image2);
83 Image1.Threshold(Threshold);
97 return M.HighlightFeatures_7x7(Threshold, 0f, 1f);
110 float MinThreshold,
float MaxThreshold)
118 Erode(7, 7, MinThreshold);
120 Image1.AbsoluteDifference(Image2);
121 Image1.Threshold(Threshold);
135 return M.HighlightFeatures_3x3(Threshold, 0, 0x01000000);
148 int MinThreshold,
int MaxThreshold)
156 Erode(3, 3, MinThreshold);
158 Image1.AbsoluteDifference(Image2);
159 Image1.Threshold(Threshold);
173 return M.HighlightFeatures_5x5(Threshold, 0, 0x01000000);
186 int MinThreshold,
int MaxThreshold)
194 Erode(5, 5, MinThreshold);
196 Image1.AbsoluteDifference(Image2);
197 Image1.Threshold(Threshold);
211 return M.HighlightFeatures_7x7(Threshold, 0, 0x01000000);
224 int MinThreshold,
int MaxThreshold)
232 Erode(7, 7, MinThreshold);
234 Image1.AbsoluteDifference(Image2);
235 Image1.Threshold(Threshold);
Shape for morphological operations.
static readonly Shape Diamond_3x3
Diamond shape
static readonly Shape X_7x7
X shape
static readonly Shape X_5x5
X shape
static readonly Shape X_3x3
X shape
static readonly Shape Diamond_7x7
Diamond shape
static readonly Shape Diamond_5x5
Diamond shape
static readonly Shape Cross_5x5
Cross shape
static readonly Shape Cross_7x7
Cross shape
static readonly Shape Cross_3x3
Cross shape
Implements a Matrix, basic component for computations in Image Processing and Computer Vision.