Images (pyobs.images)

Some info about pyobs.images.Image.

Image

class Image(data: ndarray[Any, dtype[Any]] | None = None, header: Header | None = None, mask: ndarray[Any, dtype[Any]] | None = None, uncertainty: ndarray[Any, dtype[Any]] | None = None, catalog: Table | None = None, raw: ndarray[Any, dtype[Any]] | None = None, meta: Dict[Any, Any] | None = None, *args: Any, **kwargs: Any)

Image class.

Init a new image.

Parameters:
  • data – Numpy array containing data for image.

  • header – Header for the new image.

  • mask – Mask for the image.

  • uncertainty – Uncertainty image.

  • catalog – Catalog table.

  • raw – If image is calibrated, this should be the raw image.

  • meta – Dictionary with meta information (note: not preserved in I/O operations!).

Image Processors (pyobs.images.processors)