Bases: astropy.convolution.Kernel2D
2D Airy disk kernel.
This kernel models the diffraction pattern of a circular aperture. This kernel is normalized to a peak value of 1.
Parameters: | radius : float
x_size : odd int, optional
y_size : odd int, optional
mode : str, optional
factor : number, optional
|
---|
See also
Box2DKernel, Tophat2DKernel, MexicanHat2DKernel, Ring2DKernel, TrapezoidDisk2DKernel, AiryDisk2DKernel
Examples
Kernel response:
import matplotlib.pyplot as plt from astropy.convolution import AiryDisk2DKernel airydisk_2D_kernel = AiryDisk2DKernel(10) plt.imshow(airydisk_2D_kernel, interpolation='none', origin='lower') plt.xlabel('x [pixels]') plt.ylabel('y [pixels]') plt.colorbar() plt.show()(Source code, png, hires.png, pdf)