Bases: astropy.convolution.Kernel1D
1D Mexican hat filter kernel.
The Mexican Hat, or inverted Gaussian-Laplace filter, is a bandpass filter. It smoothes the data and removes slowly varying or constant structures (e.g. Background). It is useful for peak or multi-scale detection.
This kernel is derived from a normalized Gaussian function, by computing the second derivative. This results in an amplitude at the kernels center of 1. / (sqrt(2 * pi) * width ** 3). The normalization is the same as for scipy.ndimage.filters.gaussian_laplace, except for a minus sign.
Parameters: | width : number
x_size : odd int, optional
mode : str, optional
factor : number, optional
|
---|
See also
Examples
Kernel response:
import matplotlib.pyplot as plt from astropy.convolution import MexicanHat1DKernel mexicanhat_1D_kernel = MexicanHat1DKernel(10) plt.plot(mexicanhat_1D_kernel, drawstyle='steps') plt.xlabel('x [pixels]') plt.ylabel('value') plt.show()(Source code, png, hires.png, pdf)