Source code for pycube.datacontainers.image

from pycube.datacontainers import datacontainer


[docs]class Image(datacontainer.DataContainer): r"""This class is designed to dictat the behaviour of an image """ def __init__(self, hdul=None, instrument=None, fits_file=None): super().__init__(hdul=hdul, instrument=instrument, fits_file=fits_file)