public class LaplacianOfGaussian2D extends FConvolution
SinglebandImageProcessor.Processable<T,S extends Image<T,S>,I extends Image<?,I>>kernel| Constructor and Description |
|---|
LaplacianOfGaussian2D(int size,
float sigma)
Construct with given kernel size and variance.
|
LaplacianOfGaussian2D(int width,
int height,
float sigma)
Construct with given kernel size and variance.
|
| Modifier and Type | Method and Description |
|---|---|
static FImage |
createKernelImage(int size,
float sigma)
Create a kernel image with given kernel size and variance.
|
static FImage |
createKernelImage(int width,
int height,
float sigma)
Create a kernel image with given kernel size and variance.
|
processImage, responseAt, setBruteForcepublic LaplacianOfGaussian2D(int width, int height, float sigma)
width - kernel widthheight - kernel heightsigma - variancepublic LaplacianOfGaussian2D(int size, float sigma)
size - kernel width/heightsigma - variancepublic static FImage createKernelImage(int size, float sigma)
size - image height/width.sigma - variance.public static FImage createKernelImage(int width, int height, float sigma)
width - image width.height - image height.sigma - variance.