Imviz

class jdaviz.configs.imviz.helper.Imviz(*args, **kwargs)[source] [edit on github]

Bases: ImageConfigHelper

Imviz Helper class.

Methods Summary

create_image_viewer([viewer_name])

Create a new image viewer.

destroy_viewer(viewer_id)

Destroy a viewer associated with the given ID.

get_aperture_photometry_results()

Return aperture photometry results, if any.

get_catalog_source_results()

Return table of sources given by querying from a catalog, if any.

get_data([data_label, spatial_subset, cls])

Returns data with name equal to data_label of type cls with subsets applied from spatial_subset.

link_data(**kwargs)

(Re)link loaded data in Imviz with the desired link type.

load_data(data[, data_label, do_link, ...])

Load data into Imviz.

Methods Documentation

create_image_viewer(viewer_name=None)[source] [edit on github]

Create a new image viewer.

To display data in this new viewer programmatically, first get the new viewer ID from the small tab on the top left of viewer display. Then, use add_data_to_viewer() from imviz.app by passing in the new viewer ID and the desired data label, once per dataset you wish to display.

Alternately, you can also display data interactively via the GUI.

Parameters:
viewer_namestr or None

Viewer name/ID to use. If None, it is auto-generated.

Returns:
viewerImvizImageView

Image viewer instance.

destroy_viewer(viewer_id)[source] [edit on github]

Destroy a viewer associated with the given ID.

Raises:
ValueError

Default viewer cannot be destroyed.

get_aperture_photometry_results()[source] [edit on github]

Return aperture photometry results, if any. Results are calculated using Simple Aperture Photometry plugin.

Returns:
resultsQTable or None

Photometry results if available or None otherwise.

get_catalog_source_results()[source] [edit on github]

Return table of sources given by querying from a catalog, if any. Results are calculated using Catalog Search plugin.

Returns:
resultsQTable or None

Table of sources if available or None otherwise.

get_data(data_label=None, spatial_subset=None, cls=None)[source] [edit on github]

Returns data with name equal to data_label of type cls with subsets applied from spatial_subset.

Parameters:
data_labelstr, optional

Provide a label to retrieve a specific data set from data_collection.

spatial_subsetstr, optional

Spatial subset applied to data.

clsSpectrum1D, CCDData, optional

The type that data will be returned as.

Returns:
datacls

Data is returned as type cls with subsets applied.

(Re)link loaded data in Imviz with the desired link type. All existing links will be replaced.

See link_image_data() for available keyword options and more details.

load_data(data, data_label=None, do_link=True, show_in_viewer=True, **kwargs)[source] [edit on github]

Load data into Imviz.

Parameters:
dataobj or str

File name or object to be loaded. Supported formats include:

  • 'filename.fits' (or any extension that astropy.io.fits supports; first image extension found is loaded unless ext keyword is also given)

  • 'filename.fits[SCI]' (loads only first SCI extension)

  • 'filename.fits[SCI,2]' (loads the second SCI extension)

  • 'filename.jpg' (requires scikit-image; grayscale only)

  • 'filename.png' (requires scikit-image; grayscale only)

  • JWST ASDF-in-FITS file (requires stdatamodels and gwcs; data or given ext + GWCS)

  • Roman ASDF file or roman_datamodels.datamodels.ImageModel (requires roman-datamodels)

  • HDUList object (first image extension found is loaded unless ext keyword is also given)

  • ImageHDU object

  • NDData object (2D only but may have unit, mask, or uncertainty attached)

  • Numpy array (2D or 3D); if 3D, it will treat each slice at axis=0 as a separate image (limit is 16 slices), however loading too many slices will cause performance issue, so consider using Cubeviz instead.

data_labelstr or None

Data label to go with the given data. If not given, this is automatically determined from filename or randomly generated. The final label shown in Imviz may have additional information appended for clarity.

do_linkbool

Link the data after parsing. Set this to False if you want to load multiple data back-to-back but you must remember to run link_data() manually at the end.

show_in_viewerstr or bool

If True, show the data in default viewer. If a string, show in that viewer.

kwargsdict

Extra keywords to be passed into app-level parser. The only one you might call directly here is ext (any FITS extension format supported by astropy.io.fits).

Notes

When loading image formats that support RGB color like JPG or PNG, the files are converted to greyscale. This is done following the algorithm of skimage.color.rgb2gray(), which involves weighting the channels as 0.2125 R + 0.7154 G + 0.0721 B. If you prefer a different weighting, you can use skimage.io.imread() to produce your own greyscale image as Numpy array and load the latter instead.