download_moonlanding_image#
- download_moonlanding_image(load: bool = True) ImageData | str[source]#
Download the Moon landing image.
This is a noisy image originally obtained from Scipy Lecture Notes and can be used to demonstrate a low pass filter.
See the scipy-lectures license for more details regarding this image’s use and distribution.
- Parameters:
- Returns:
- output
pyvista.ImageData|str DataSetor filename depending onload.
- output
Examples#
Download Python source code | Download Jupyter notebook
>>> from pyvista import examples
>>> dataset = examples.download_moonlanding_image()
>>> dataset.plot(
... cpos='xy',
... cmap='gray',
... background='w',
... show_scalar_bar=False,
... )
See also
- Moonlanding Image Dataset
See this dataset in the Dataset Gallery for more info.
- Fast Fourier Transform
Full example using this dataset.