LSST Applications g0b6bd0c080+a72a5dd7e6,g1182afd7b4+2a019aa3bb,g17e5ecfddb+2b8207f7de,g1d67935e3f+06cf436103,g38293774b4+ac198e9f13,g396055baef+6a2097e274,g3b44f30a73+6611e0205b,g480783c3b1+98f8679e14,g48ccf36440+89c08d0516,g4b93dc025c+98f8679e14,g5c4744a4d9+a302e8c7f0,g613e996a0d+e1c447f2e0,g6c8d09e9e7+25247a063c,g7271f0639c+98f8679e14,g7a9cd813b8+124095ede6,g9d27549199+a302e8c7f0,ga1cf026fa3+ac198e9f13,ga32aa97882+7403ac30ac,ga786bb30fb+7a139211af,gaa63f70f4e+9994eb9896,gabf319e997+ade567573c,gba47b54d5d+94dc90c3ea,gbec6a3398f+06cf436103,gc6308e37c7+07dd123edb,gc655b1545f+ade567573c,gcc9029db3c+ab229f5caf,gd01420fc67+06cf436103,gd877ba84e5+06cf436103,gdb4cecd868+6f279b5b48,ge2d134c3d5+cc4dbb2e3f,ge448b5faa6+86d1ceac1d,gecc7e12556+98f8679e14,gf3ee170dca+25247a063c,gf4ac96e456+ade567573c,gf9f5ea5b4d+ac198e9f13,gff490e6085+8c2580be5c,w.2022.27
LSST Data Management Base Package
Exposure.h
Go to the documentation of this file.
1// -*- LSST-C++ -*- // fixed format comment for emacs
2
3/*
4 * LSST Data Management System
5 * Copyright 2008, 2009, 2010 LSST Corporation.
6 *
7 * This product includes software developed by the
8 * LSST Project (http://www.lsst.org/).
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the LSST License Statement and
21 * the GNU General Public License along with this program. If not,
22 * see <http://www.lsstcorp.org/LegalNotices/>.
23 */
24
25#ifndef LSST_AFW_IMAGE_EXPOSURE_H
26#define LSST_AFW_IMAGE_EXPOSURE_H
27
28#include <memory>
29
30#include "lsst/base.h"
31#include "lsst/daf/base.h"
34#include "lsst/geom/Extent.h"
36
37namespace lsst {
38namespace afw {
39namespace image {
40
70template <typename ImageT, typename MaskT = lsst::afw::image::MaskPixel,
71 typename VarianceT = lsst::afw::image::VariancePixel>
72class Exposure {
73public:
75
76 // Class Constructors and Destructor
84 explicit Exposure(unsigned int width, unsigned int height,
86
95
101 explicit Exposure(lsst::geom::Box2I const& bbox,
103
109 explicit Exposure(MaskedImageT& maskedImage,
111
120
132 explicit Exposure(std::string const& fileName, lsst::geom::Box2I const& bbox = lsst::geom::Box2I(),
133 ImageOrigin origin = PARENT, bool conformMasks = false, bool allowUnsafe = false);
134
147 ImageOrigin origin = PARENT, bool conformMasks = false, bool allowUnsafe = false);
148
160 explicit Exposure(fits::Fits& fitsfile, lsst::geom::Box2I const& bbox = lsst::geom::Box2I(),
161 ImageOrigin origin = PARENT, bool conformMasks = false, bool allowUnsafe = false);
162
168 Exposure(Exposure const& src, bool const deep = false);
170
181 Exposure(Exposure const& src, lsst::geom::Box2I const& bbox, ImageOrigin const origin = PARENT,
182 bool const deep = false);
183
188 template <typename OtherPixelT>
190 const bool deep
191 )
192 : _maskedImage(rhs.getMaskedImage(), deep), _info(new ExposureInfo(*rhs.getInfo(), deep)) {
193 if (not deep) {
195 "Exposure's converting copy constructor must make a deep copy");
196 }
197 }
198
201
216 return Exposure(*this, bbox, origin, false);
217 }
218
221
224 virtual ~Exposure();
225
226 // Get Members
228 MaskedImageT getMaskedImage() { return _maskedImage; }
230 MaskedImageT getMaskedImage() const { return _maskedImage; }
231
232 std::shared_ptr<geom::SkyWcs const> getWcs() const { return _info->getWcs(); }
233
236 return _info->getDetector();
237 }
239 // TODO: remove in DM-27811
240 [[deprecated("Replaced by getFilter. Will be removed after v24.")]]
243 std::shared_ptr<FilterLabel const> getFilter() const { return _info->getFilter(); }
245 std::shared_ptr<lsst::daf::base::PropertySet> getMetadata() const { return _info->getMetadata(); }
246 void setMetadata(std::shared_ptr<lsst::daf::base::PropertySet> metadata) { _info->setMetadata(metadata); }
247
249 int getWidth() const { return _maskedImage.getWidth(); }
251 int getHeight() const { return _maskedImage.getHeight(); }
253 lsst::geom::Extent2I getDimensions() const { return _maskedImage.getDimensions(); }
254
260 int getX0() const { return _maskedImage.getX0(); }
266 int getY0() const { return _maskedImage.getY0(); }
267
275 lsst::geom::Point2I getXY0() const { return _maskedImage.getXY0(); }
276
278 return _maskedImage.getBBox(origin);
279 }
288 void setXY0(lsst::geom::Point2I const& origin);
289
290 // Set Members
293 void setMaskedImage(MaskedImageT& maskedImage);
294 void setWcs(std::shared_ptr<geom::SkyWcs> wcs) { _info->setWcs(wcs); }
297 _info->setDetector(detector);
298 }
300 // TODO: remove in DM-27811
301 [[deprecated("Replaced by setFilter. Will be removed after v24.")]]
303 setFilter(filterLabel);
304 }
307 _info->setFilter(filterLabel);
308 }
309
313 std::shared_ptr<PhotoCalib const> getPhotoCalib() const { return _info->getPhotoCalib(); }
314
317
320
322 bool hasPsf() const { return _info->hasPsf(); }
323
325 bool hasWcs() const { return _info->hasWcs(); }
326
329
332
334 void setInfo(std::shared_ptr<ExposureInfo> exposureInfo) { _info = exposureInfo; }
335
350 void writeFits(std::string const& fileName) const;
351
359 void writeFits(fits::MemFileManager& manager) const;
360
368 void writeFits(fits::Fits& fitsfile) const;
369
378 void writeFits(std::string const& fileName, fits::ImageWriteOptions const& imageOptions,
379 fits::ImageWriteOptions const& maskOptions,
380 fits::ImageWriteOptions const& varianceOptions) const;
381
390 void writeFits(fits::MemFileManager& manager, fits::ImageWriteOptions const& imageOptions,
391 fits::ImageWriteOptions const& maskOptions,
392 fits::ImageWriteOptions const& varianceOptions) const;
393
402 void writeFits(fits::Fits& fitsfile, fits::ImageWriteOptions const& imageOptions,
403 fits::ImageWriteOptions const& maskOptions,
404 fits::ImageWriteOptions const& varianceOptions) const;
405
411 static Exposure readFits(std::string const& filename) {
412 return Exposure<ImageT, MaskT, VarianceT>(filename);
413 }
414
422 }
423
440 Exposure getCutout(lsst::geom::SpherePoint const& center, lsst::geom::Extent2I const& size) const;
441
442private:
443 void _readFits(fits::Fits& fitsfile, lsst::geom::Box2I const& bbox, ImageOrigin origin,
444 bool conformMasks);
445
446 MaskedImageT _maskedImage;
448};
449
453template <typename ImagePixelT, typename MaskPixelT, typename VariancePixelT>
458) {
461}
462} // namespace image
463} // namespace afw
464} // namespace lsst
465
466#endif // LSST_AFW_IMAGE_EXPOSURE_H
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
table::Key< int > detector
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Definition: Exception.h:48
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:48
std::shared_ptr< RecordT > src
Definition: Match.cc:48
table::Key< table::Array< std::uint8_t > > wcs
Definition: SkyWcs.cc:66
Basic LSST definitions.
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:297
Lifetime-management for memory that goes into FITS memory files.
Definition: fits.h:121
A class to contain the data, WCS, and other information needed to describe an image of the sky.
Definition: Exposure.h:72
MaskedImageT getMaskedImage()
Return the MaskedImage.
Definition: Exposure.h:228
void setFilterLabel(std::shared_ptr< FilterLabel const > filterLabel)
Set the Exposure's filter information.
Definition: Exposure.h:302
void setPsf(std::shared_ptr< lsst::afw::detection::Psf const > psf)
Set the Exposure's Psf.
Definition: Exposure.h:316
bool hasWcs() const
Does this Exposure have a Wcs?
Definition: Exposure.h:325
Exposure getCutout(lsst::geom::SpherePoint const &center, lsst::geom::Extent2I const &size) const
Return an Exposure that is a small cutout of the original.
Definition: Exposure.cc:204
int getHeight() const
Return the Exposure's height.
Definition: Exposure.h:251
Exposure(Exposure< OtherPixelT, MaskT, VarianceT > const &rhs, const bool deep)
generalised copy constructor; defined here in the header so that the compiler can instantiate N(N-1)/...
Definition: Exposure.h:189
std::shared_ptr< lsst::afw::cameraGeom::Detector const > getDetector() const
Return the Exposure's Detector information.
Definition: Exposure.h:235
std::shared_ptr< ExposureInfo > getInfo()
Get the ExposureInfo that aggregates all the non-image components. Never null.
Definition: Exposure.h:328
void setDetector(std::shared_ptr< lsst::afw::cameraGeom::Detector const > detector)
Set the Exposure's Detector information.
Definition: Exposure.h:296
void writeFits(std::string const &fileName) const
Write an Exposure to a regular multi-extension FITS file.
Definition: Exposure.cc:134
std::shared_ptr< FilterLabel const > getFilterLabel() const
Return the Exposure's filter information.
Definition: Exposure.h:241
std::shared_ptr< lsst::daf::base::PropertySet > getMetadata() const
Return flexible metadata.
Definition: Exposure.h:245
virtual ~Exposure()
Destructor.
std::shared_ptr< lsst::afw::detection::Psf const > getPsf() const
Return the Exposure's Psf object.
Definition: Exposure.h:319
std::shared_ptr< ExposureInfo const > getInfo() const
Get the ExposureInfo that aggregates all the non-image components. Never null.
Definition: Exposure.h:331
MaskedImageT getMaskedImage() const
Return the MaskedImage.
Definition: Exposure.h:230
void setPhotoCalib(std::shared_ptr< PhotoCalib const > photoCalib)
Set the Exposure's PhotoCalib object.
Definition: Exposure.h:311
int getWidth() const
Return the Exposure's width.
Definition: Exposure.h:249
int getY0() const
Return the Exposure's row-origin.
Definition: Exposure.h:266
Exposure subset(lsst::geom::Box2I const &bbox, ImageOrigin origin=PARENT) const
Return a subimage corresponding to the given box.
Definition: Exposure.h:215
void setInfo(std::shared_ptr< ExposureInfo > exposureInfo)
Set the ExposureInfo that aggregates all the non-image components.
Definition: Exposure.h:334
Exposure(unsigned int width, unsigned int height, std::shared_ptr< geom::SkyWcs const > wcs=std::shared_ptr< geom::SkyWcs const >())
Construct an Exposure with a blank MaskedImage of specified size (default 0x0) and a SkyWcs (which ma...
Definition: Exposure.cc:46
void setMetadata(std::shared_ptr< lsst::daf::base::PropertySet > metadata)
Definition: Exposure.h:246
std::shared_ptr< PhotoCalib const > getPhotoCalib() const
Return the Exposure's PhotoCalib object.
Definition: Exposure.h:313
int getX0() const
Return the Exposure's column-origin.
Definition: Exposure.h:260
std::shared_ptr< FilterLabel const > getFilter() const
Return the Exposure's filter information.
Definition: Exposure.h:243
Exposure operator[](lsst::geom::Box2I const &bbox) const
Return a subimage corresponding to the given box (interpreted as PARENT coordinates).
Definition: Exposure.h:220
lsst::geom::Extent2I getDimensions() const
Return the Exposure's size.
Definition: Exposure.h:253
bool hasPsf() const
Does this Exposure have a Psf?
Definition: Exposure.h:322
void setFilter(std::shared_ptr< FilterLabel const > filterLabel)
Set the Exposure's filter information.
Definition: Exposure.h:306
static Exposure readFits(fits::MemFileManager &manager)
Read an Exposure from a FITS RAM file.
Definition: Exposure.h:420
void setWcs(std::shared_ptr< geom::SkyWcs > wcs)
Definition: Exposure.h:294
std::shared_ptr< geom::SkyWcs const > getWcs() const
Definition: Exposure.h:232
Exposure & operator=(Exposure &&)
Exposure & operator=(Exposure const &)
lsst::geom::Point2I getXY0() const
Return the Exposure's origin.
Definition: Exposure.h:275
void setXY0(lsst::geom::Point2I const &origin)
Set the Exposure's origin (including correcting the Wcs)
Definition: Exposure.cc:116
static Exposure readFits(std::string const &filename)
Read an Exposure from a regular FITS file.
Definition: Exposure.h:411
void setMaskedImage(MaskedImageT &maskedImage)
Set the MaskedImage of the Exposure.
Definition: Exposure.cc:111
MaskedImage< ImageT, MaskT, VarianceT > MaskedImageT
Definition: Exposure.h:74
lsst::geom::Box2I getBBox(ImageOrigin const origin=PARENT) const
Definition: Exposure.h:277
A collection of all the things that make an Exposure different from a MaskedImage.
Definition: ExposureInfo.h:88
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:73
int getX0() const
Return the image's column-origin.
Definition: MaskedImage.h:1066
lsst::geom::Box2I getBBox(ImageOrigin const origin=PARENT) const
Definition: MaskedImage.h:1058
int getHeight() const
Return the number of rows in the image.
Definition: MaskedImage.h:1056
int getY0() const
Return the image's row-origin.
Definition: MaskedImage.h:1074
lsst::geom::Extent2I getDimensions() const
Definition: MaskedImage.h:1057
lsst::geom::Point2I getXY0() const
Return the image's origin.
Definition: MaskedImage.h:1082
int getWidth() const
Return the number of columns in the image.
Definition: MaskedImage.h:1054
An integer coordinate rectangle.
Definition: Box.h:55
Point in an unspecified spherical coordinate system.
Definition: SpherePoint.h:57
Reports invalid arguments.
Definition: Runtime.h:66
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
float VariancePixel
default type for MaskedImage variance images
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
std::shared_ptr< Exposure< ImagePixelT, MaskPixelT, VariancePixelT > > makeExposure(MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT > &mimage, std::shared_ptr< geom::SkyWcs const > wcs=std::shared_ptr< geom::SkyWcs const >())
A function to return an Exposure of the correct type (cf.
Definition: Exposure.h:454
A base class for image defects.
Options for writing an image to FITS.
Definition: fits.h:219
Key< int > psf
Definition: Exposure.cc:65
Key< int > photoCalib
Definition: Exposure.cc:67