Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DetectEdgesSharrVertical.cs
2{
6 public static partial class ConvolutionOperations
7 {
15 {
16 return M.Convolute(detectVerticalEdgesSharrKernel);
17 }
18
26 {
27 return M.Convolute(detectVerticalEdgesSharrKernel);
28 }
29
37 {
38 return M.Convolute(detectVerticalEdgesSharrKernel);
39 }
40
41 private static readonly Matrix<int> detectVerticalEdgesSharrKernel = new Matrix<int>(3, 3, new int[]
42 {
43 -3, 0, 3,
44 -10, 0, 10,
45 -3, 0, 3
46 });
47 }
48}
Implements a Matrix, basic component for computations in Image Processing and Computer Vision.
Definition: Matrix.cs:12
static IMatrix DetectEdgesSharrVertical(this IMatrix M)
Detects vertical edges in an image using the Sharr Vertical Edge Operator. (Second order horizontal d...
static Matrix< float > DetectEdgesSharrVertical(this Matrix< float > M)
Detects vertical edges in an image using the Sharr Vertical Edge Operator. (Second order horizontal d...
static Matrix< int > DetectEdgesSharrVertical(this Matrix< int > M)
Detects vertical edges in an image using the Sharr Vertical Edge Operator. (Second order horizontal d...
Interface for matrices.
Definition: IMatrix.cs:9