Class Laplace
Represents an operator that calculates the Laplace transform of each image in the sequence.
public class Laplace : Transform<IplImage, IplImage>
- Inheritance
-
Laplace
- Inherited Members
Properties
ApertureSize
Gets or sets the size of the extended Sobel kernel used to compute derivatives.
[Range(1, 7)]
[Precision(0, 2)]
[TypeConverter(typeof(OddKernelSizeConverter))]
public int ApertureSize { get; set; }
Property Value
Methods
Process(IObservable<IplImage>)
Calculates the Laplace transform of each image in an observable sequence.
public override IObservable<IplImage> Process(IObservable<IplImage> source)
Parameters
source
IObservable<IplImage>The sequence of images for which to compute the transform.
Returns
- IObservable<IplImage>
A sequence of IplImage objects containing the Laplace transform of each image in the
source
sequence.