Method | Description | |
---|---|---|
DifferenceOfGaussians ( ) : System |
Initializes a new instance of the DifferenceOfGaussians class.
|
|
DifferenceOfGaussians ( int windowSize1, int windowSize2 ) : System |
Initializes a new instance of the DifferenceOfGaussians class.
|
|
DifferenceOfGaussians ( int windowSize1, int windowSize2, double sigma ) : System |
Initializes a new instance of the DifferenceOfGaussians class.
|
|
DifferenceOfGaussians ( int windowSize1, int windowSize2, double sigma1, double sigma2 ) : System |
Initializes a new instance of the DifferenceOfGaussians class.
|
Method | Description | |
---|---|---|
ProcessFilter ( UnmanagedImage image ) : void |
Process the filter on the specified image.
|
public DifferenceOfGaussians ( int windowSize1, int windowSize2 ) : System | ||
windowSize1 | int | The first window size. Default is 3 |
windowSize2 | int | The second window size. Default is 4. |
return | System |
public DifferenceOfGaussians ( int windowSize1, int windowSize2, double sigma ) : System | ||
windowSize1 | int | The window size for the first Gaussian. Default is 3 |
windowSize2 | int | The window size for the second Gaussian. Default is 4. |
sigma | double | The sigma for both Gaussian filters. Default is 0.4. |
return | System |
public DifferenceOfGaussians ( int windowSize1, int windowSize2, double sigma1, double sigma2 ) : System | ||
windowSize1 | int | The window size for the first Gaussian. Default is 3 |
windowSize2 | int | The window size for the second Gaussian. Default is 4. |
sigma1 | double | The sigma for the first Gaussian. Default is 0.4. |
sigma2 | double | The sigma for the second Gaussian. Default is 0.4 |
return | System |
protected ProcessFilter ( UnmanagedImage image ) : void | ||
image | UnmanagedImage | Source image data. |
return | void |