LSST Applications g070148d5b3+33e5256705,g0d53e28543+25c8b88941,g0da5cf3356+2dd1178308,g1081da9e2a+62d12e78cb,g17e5ecfddb+7e422d6136,g1c76d35bf8+ede3a706f7,g295839609d+225697d880,g2e2c1a68ba+cc1f6f037e,g2ffcdf413f+853cd4dcde,g38293774b4+62d12e78cb,g3b44f30a73+d953f1ac34,g48ccf36440+885b902d19,g4b2f1765b6+7dedbde6d2,g5320a0a9f6+0c5d6105b6,g56b687f8c9+ede3a706f7,g5c4744a4d9+ef6ac23297,g5ffd174ac0+0c5d6105b6,g6075d09f38+66af417445,g667d525e37+2ced63db88,g670421136f+2ced63db88,g71f27ac40c+2ced63db88,g774830318a+463cbe8d1f,g7876bc68e5+1d137996f1,g7985c39107+62d12e78cb,g7fdac2220c+0fd8241c05,g96f01af41f+368e6903a7,g9ca82378b8+2ced63db88,g9d27549199+ef6ac23297,gabe93b2c52+e3573e3735,gb065e2a02a+3dfbe639da,gbc3249ced9+0c5d6105b6,gbec6a3398f+0c5d6105b6,gc9534b9d65+35b9f25267,gd01420fc67+0c5d6105b6,geee7ff78d7+a14128c129,gf63283c776+ede3a706f7,gfed783d017+0c5d6105b6,w.2022.47
LSST Data Management Base Package
Loading...
Searching...
No Matches
Image.h
Go to the documentation of this file.
1// -*- lsst-c++ -*-
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/*
26 * 2-D images
27 *
28 * This file contains the 2-d image support for LSST
29 */
30#ifndef LSST_AFW_IMAGE_IMAGE_H
31#define LSST_AFW_IMAGE_IMAGE_H
32
33#include <string>
34
35#include <climits>
36#include <memory>
37
38#include "lsst/geom.h"
40#include "lsst/afw/image/Mask.h"
43#include "ndarray.h"
44
45namespace lsst {
46namespace afw {
47namespace image {
48
50template <typename PixelT>
51class Image : public ImageBase<PixelT> {
52public:
53 template <typename, typename, typename>
54 friend class MaskedImage;
55
57
59 template <typename ImagePT = PixelT>
63 };
64 template <typename OtherPixelT>
65 friend class Image; // needed by generalised copy constructors
66
77 explicit Image(unsigned int width, unsigned int height, PixelT initialValue = 0);
87 explicit Image(lsst::geom::Extent2I const& dimensions = lsst::geom::Extent2I(), PixelT initialValue = 0);
94 explicit Image(lsst::geom::Box2I const& bbox, PixelT initialValue = 0);
95
109 explicit Image(Image const& rhs, lsst::geom::Box2I const& bbox, ImageOrigin const origin = PARENT,
110 const bool deep = false);
120 Image(const Image& rhs, const bool deep = false);
121 Image(Image&& rhs);
122
137 explicit Image(std::string const& fileName, int hdu = fits::DEFAULT_HDU,
140 lsst::geom::Box2I const& bbox = lsst::geom::Box2I(), ImageOrigin origin = PARENT,
141 bool allowUnsafe = false);
142
157 explicit Image(fits::MemFileManager& manager, int hdu = fits::DEFAULT_HDU,
160 lsst::geom::Box2I const& bbox = lsst::geom::Box2I(), ImageOrigin origin = PARENT,
161 bool allowUnsafe = false);
162
174 explicit Image(fits::Fits& fitsfile,
177 lsst::geom::Box2I const& bbox = lsst::geom::Box2I(), ImageOrigin origin = PARENT,
178 bool allowUnsafe = false);
179
180 // generalised copy constructor
181 template <typename OtherPixelT>
182 Image(Image<OtherPixelT> const& rhs, const bool deep) : image::ImageBase<PixelT>(rhs, deep) {}
183
184 explicit Image(ndarray::Array<PixelT, 2, 1> const& array, bool deep = false,
186 : image::ImageBase<PixelT>(array, deep, xy0) {}
187
188 ~Image() override = default;
189 //
190 // Assignment operators are not inherited
191 //
193 Image& operator=(const PixelT rhs);
203 Image& operator=(const Image& rhs);
204 Image& operator=(Image&& rhs);
205
219 Image subset(lsst::geom::Box2I const& bbox, ImageOrigin origin = PARENT) const {
220 return Image(*this, bbox, origin, false);
221 }
222
225
226 using ImageBase<PixelT>::operator[];
227
229
236 void writeFits(std::string const& fileName,
237 daf::base::PropertySet const * metadata = nullptr,
238 std::string const& mode = "w") const;
239 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
240 void writeFits(std::string const& fileName,
242 std::string const& mode = "w") const;
244
246
254 daf::base::PropertySet const * metadata = nullptr,
255 std::string const& mode = "w") const;
256 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
259 std::string const& mode = "w") const;
261
263
269 void writeFits(fits::Fits& fitsfile, daf::base::PropertySet const * metadata = nullptr) const;
270 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
273
275
284 void writeFits(std::string const& filename, fits::ImageWriteOptions const& options,
285 std::string const& mode = "w",
286 daf::base::PropertySet const * header = nullptr,
287 Mask<MaskPixel> const * mask = nullptr) const;
288 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
289 void writeFits(std::string const& filename, fits::ImageWriteOptions const& options,
290 std::string const& mode,
292 std::shared_ptr<Mask<MaskPixel> const> mask = nullptr) const;
294
296
306 std::string const& mode = "w",
307 daf::base::PropertySet const * header = nullptr,
308 Mask<MaskPixel> const *mask = nullptr) const;
309 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
311 std::string const& mode,
313 std::shared_ptr<Mask<MaskPixel> const> mask = nullptr) const;
315
317
325 void writeFits(fits::Fits& fitsfile, fits::ImageWriteOptions const& options,
326 daf::base::PropertySet const * header = nullptr,
327 Mask<MaskPixel> const * mask = nullptr) const;
328 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
329 void writeFits(fits::Fits& fitsfile, fits::ImageWriteOptions const& options,
331 std::shared_ptr<Mask<MaskPixel> const> mask = nullptr) const;
333
342 static Image readFits(std::string const& filename, int hdu = fits::DEFAULT_HDU) {
343 return Image<PixelT>(filename, hdu);
344 }
345
355 return Image<PixelT>(manager, hdu);
356 }
357
358 void swap(Image& rhs);
359 //
360 // Operators etc.
361 //
363 Image& operator+=(PixelT const rhs);
365 virtual Image& operator+=(Image<PixelT> const& rhs);
373 void scaledPlus(PixelT const c, Image<PixelT> const& rhs);
375 Image& operator-=(PixelT const rhs);
377 Image& operator-=(Image<PixelT> const& rhs);
385 void scaledMinus(PixelT const c, Image<PixelT> const& rhs);
387 Image& operator*=(PixelT const rhs);
389 Image& operator*=(Image<PixelT> const& rhs);
391 void scaledMultiplies(PixelT const c, Image<PixelT> const& rhs);
397 Image& operator/=(PixelT const rhs);
399 Image& operator/=(Image<PixelT> const& rhs);
401 void scaledDivides(PixelT const c, Image<PixelT> const& rhs);
402
403 // In-place per-pixel sqrt(). Useful when handling variance planes.
404 void sqrt();
405
406protected:
407 using ImageBase<PixelT>::_getRawView;
408};
409
411template <typename LhsPixelT, typename RhsPixelT>
412Image<LhsPixelT>& operator+=(Image<LhsPixelT>& lhs, Image<RhsPixelT> const& rhs);
414template <typename LhsPixelT, typename RhsPixelT>
415Image<LhsPixelT>& operator-=(Image<LhsPixelT>& lhs, Image<RhsPixelT> const& rhs);
417template <typename LhsPixelT, typename RhsPixelT>
418Image<LhsPixelT>& operator*=(Image<LhsPixelT>& lhs, Image<RhsPixelT> const& rhs);
420template <typename LhsPixelT, typename RhsPixelT>
421Image<LhsPixelT>& operator/=(Image<LhsPixelT>& lhs, Image<RhsPixelT> const& rhs);
422
423template <typename PixelT>
424void swap(Image<PixelT>& a, Image<PixelT>& b);
425
429template <typename PixelT>
431public:
446 explicit DecoratedImage(const lsst::geom::Box2I& bbox);
463 DecoratedImage(DecoratedImage const& rhs, const bool deep = false);
474 explicit DecoratedImage(std::string const& fileName, const int hdu = fits::DEFAULT_HDU,
476 ImageOrigin const origin = PARENT, bool allowUnsafe = false);
477
484
486 void setMetadata(std::shared_ptr<lsst::daf::base::PropertySet> metadata) { _metadata = metadata; }
487
489 int getWidth() const { return _image->getWidth(); }
491 int getHeight() const { return _image->getHeight(); }
492
494 int getX0() const { return _image->getX0(); }
496 int getY0() const { return _image->getY0(); }
497
499 const lsst::geom::Extent2I getDimensions() const { return _image->getDimensions(); }
500
501 void swap(DecoratedImage& rhs);
502
504
511 void writeFits(std::string const& fileName,
512 daf::base::PropertySet const * metadata = nullptr,
513 std::string const& mode = "w") const;
514 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
515 void writeFits(std::string const& fileName,
517 std::string const& mode = "w") const;
519
521
529 void writeFits(std::string const& fileName, fits::ImageWriteOptions const& options,
530 daf::base::PropertySet const * metadata = nullptr,
531 std::string const& mode = "w") const;
532 [[deprecated("Replaced by a non-shared_ptr overload. Will be removed after v25.")]]
533 void writeFits(std::string const& fileName, fits::ImageWriteOptions const& options,
535 std::string const& mode = "w") const;
537
541 std::shared_ptr<Image<PixelT> const> getImage() const { return _image; }
542
548 double getGain() const { return _gain; }
550 void setGain(double gain) { _gain = gain; }
551
552private:
555
556 double _gain;
557
558 void init();
559};
560
561template <typename PixelT>
562void swap(DecoratedImage<PixelT>& a, DecoratedImage<PixelT>& b);
563
569
573template <typename T1, typename T2>
574bool imagesOverlap(ImageBase<T1> const& image1, ImageBase<T2> const& image2);
575
576} // namespace image
577} // namespace afw
578} // namespace lsst
579
580#endif
AmpInfoBoxKey bbox
Definition: Amplifier.cc:117
table::Key< double > gain
Definition: Amplifier.cc:118
afw::table::PointKey< int > dimensions
Definition: GaussianPsf.cc:48
table::Key< int > b
table::Key< int > a
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
Definition: fits.h:308
Lifetime-management for memory that goes into FITS memory files.
Definition: fits.h:125
A container for an Image and its associated metadata.
Definition: Image.h:430
const lsst::geom::Extent2I getDimensions() const
Return the image's size; useful for passing to constructors.
Definition: Image.h:499
DecoratedImage & operator=(const DecoratedImage &image)
Assignment operator.
double getGain() const
Return the DecoratedImage's gain.
Definition: Image.h:548
int getY0() const
Return the image's row-origin.
Definition: Image.h:496
int getHeight() const
Return the number of rows in the image.
Definition: Image.h:491
void setMetadata(std::shared_ptr< lsst::daf::base::PropertySet > metadata)
Definition: Image.h:486
int getX0() const
Return the image's column-origin.
Definition: Image.h:494
void writeFits(std::string const &fileName, daf::base::PropertySet const *metadata=nullptr, std::string const &mode="w") const
Write a FITS file.
std::shared_ptr< lsst::daf::base::PropertySet > getMetadata() const
Definition: Image.h:485
std::shared_ptr< Image< PixelT > > getImage()
Return a shared_ptr to the DecoratedImage's Image.
Definition: Image.h:539
std::shared_ptr< Image< PixelT > const > getImage() const
Return a shared_ptr to the DecoratedImage's Image as const.
Definition: Image.h:541
void setGain(double gain)
Set the DecoratedImage's gain.
Definition: Image.h:550
int getWidth() const
Return the number of columns in the image.
Definition: Image.h:489
The base class for all image classed (Image, Mask, MaskedImage, ...)
Definition: ImageBase.h:102
_view_t _getRawView() const
Definition: ImageBase.h:465
A class to represent a 2-dimensional array of pixels.
Definition: Image.h:51
void writeFits(std::string const &filename, fits::ImageWriteOptions const &options, std::string const &mode="w", daf::base::PropertySet const *header=nullptr, Mask< MaskPixel > const *mask=nullptr) const
Write an image to a regular FITS file.
Image & operator*=(PixelT const rhs)
Multiply lhs by scalar rhs.
Definition: Image.cc:585
void writeFits(fits::Fits &fitsfile, fits::ImageWriteOptions const &options, std::shared_ptr< daf::base::PropertySet const > header, std::shared_ptr< Mask< MaskPixel > const > mask=nullptr) const
Image & operator-=(PixelT const rhs)
Subtract scalar rhs from lhs.
Definition: Image.cc:540
void scaledPlus(PixelT const c, Image< PixelT > const &rhs)
Add Image c*rhs to lhs.
Definition: Image.cc:527
Image(fits::Fits &fitsfile, std::shared_ptr< lsst::daf::base::PropertySet > metadata=std::shared_ptr< lsst::daf::base::PropertySet >(), lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Construct an Image from an already-open FITS object.
Image & operator=(const PixelT rhs)
Set the image's pixels to rhs.
Definition: Image.cc:337
Image subset(lsst::geom::Box2I const &bbox, ImageOrigin origin=PARENT) const
Return a subimage corresponding to the given box.
Definition: Image.h:219
void writeFits(fits::MemFileManager &manager, fits::ImageWriteOptions const &options, std::string const &mode="w", daf::base::PropertySet const *header=nullptr, Mask< MaskPixel > const *mask=nullptr) const
Write an image to a FITS RAM file.
Image(fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU, std::shared_ptr< lsst::daf::base::PropertySet > metadata=std::shared_ptr< lsst::daf::base::PropertySet >(), lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Construct an Image by reading a FITS image in memory.
Image operator[](lsst::geom::Box2I const &bbox) const
Return a subimage corresponding to the given box (interpreted as PARENT coordinates).
Definition: Image.h:224
Image & operator+=(PixelT const rhs)
Add scalar rhs to lhs.
Definition: Image.cc:495
static Image readFits(fits::MemFileManager &manager, int hdu=fits::DEFAULT_HDU)
Read an Image from a FITS RAM file.
Definition: Image.h:354
void writeFits(fits::MemFileManager &manager, fits::ImageWriteOptions const &options, std::string const &mode, std::shared_ptr< daf::base::PropertySet const > header, std::shared_ptr< Mask< MaskPixel > const > mask=nullptr) const
~Image() override=default
void scaledMinus(PixelT const c, Image< PixelT > const &rhs)
Subtract Image c*rhs from lhs.
Definition: Image.cc:559
void writeFits(fits::MemFileManager &manager, daf::base::PropertySet const *metadata=nullptr, std::string const &mode="w") const
Write an image to a FITS RAM file.
Image & operator/=(PixelT const rhs)
Divide lhs by scalar rhs.
Definition: Image.cc:617
Image(ndarray::Array< PixelT, 2, 1 > const &array, bool deep=false, lsst::geom::Point2I const &xy0=lsst::geom::Point2I())
Definition: Image.h:184
void writeFits(std::string const &filename, fits::ImageWriteOptions const &options, std::string const &mode, std::shared_ptr< daf::base::PropertySet const > header, std::shared_ptr< Mask< MaskPixel > const > mask=nullptr) const
Image(Image< OtherPixelT > const &rhs, const bool deep)
Definition: Image.h:182
void writeFits(std::string const &fileName, daf::base::PropertySet const *metadata=nullptr, std::string const &mode="w") const
Write an image to a regular FITS file.
void scaledDivides(PixelT const c, Image< PixelT > const &rhs)
Divide lhs by Image c*rhs (i.e. pixel-by-pixel division)
Definition: Image.cc:652
static Image readFits(std::string const &filename, int hdu=fits::DEFAULT_HDU)
Read an Image from a regular FITS file.
Definition: Image.h:342
void scaledMultiplies(PixelT const c, Image< PixelT > const &rhs)
Multiply lhs by Image c*rhs (i.e. pixel-by-pixel multiplication)
Definition: Image.cc:604
Image(std::string const &fileName, int hdu=fits::DEFAULT_HDU, std::shared_ptr< lsst::daf::base::PropertySet > metadata=std::shared_ptr< lsst::daf::base::PropertySet >(), lsst::geom::Box2I const &bbox=lsst::geom::Box2I(), ImageOrigin origin=PARENT, bool allowUnsafe=false)
Construct an Image by reading a regular FITS file.
void writeFits(fits::MemFileManager &manager, std::shared_ptr< daf::base::PropertySet const > metadata, std::string const &mode="w") const
void writeFits(std::string const &fileName, std::shared_ptr< daf::base::PropertySet const > metadata, std::string const &mode="w") const
void writeFits(fits::Fits &fitsfile, daf::base::PropertySet const *metadata=nullptr) const
Write an image to an open FITS file object.
void writeFits(fits::Fits &fitsfile, fits::ImageWriteOptions const &options, daf::base::PropertySet const *header=nullptr, Mask< MaskPixel > const *mask=nullptr) const
Write an image to an open FITS file object.
void writeFits(fits::Fits &fitsfile, std::shared_ptr< daf::base::PropertySet const > metadata) const
friend class Image
Definition: Image.h:65
Represent a 2-dimensional array of bitmask pixels.
Definition: Mask.h:77
A class to manipulate images, masks, and variance as a single object.
Definition: MaskedImage.h:74
A Function taking two arguments.
Definition: Function.h:259
Class for storing generic metadata.
Definition: PropertySet.h:66
An integer coordinate rectangle.
Definition: Box.h:55
const int DEFAULT_HDU
Specify that the default HDU should be read.
Definition: fitsDefaults.h:18
Image< LhsPixelT > & operator+=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Add lhs to Image rhs (i.e. pixel-by-pixel addition) where types are different.
Definition: Image.cc:698
Image< LhsPixelT > & operator-=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Subtract lhs from Image rhs (i.e. pixel-by-pixel subtraction) where types are different.
Definition: Image.cc:704
lsst::geom::Box2I bboxFromMetadata(daf::base::PropertySet &metadata)
Determine the image bounding box from its metadata (FITS header)
Definition: Image.cc:721
Image< LhsPixelT > & operator/=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Divide lhs by Image rhs (i.e. pixel-by-pixel division) where types are different.
Definition: Image.cc:716
Image< LhsPixelT > & operator*=(Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
Multiply lhs by Image rhs (i.e. pixel-by-pixel multiplication) where types are different.
Definition: Image.cc:710
bool imagesOverlap(ImageBase< T1 > const &image1, ImageBase< T2 > const &image2)
Return true if the pixels for two images or masks overlap in memory.
Definition: Image.cc:733
Options for writing an image to FITS.
Definition: fits.h:223
A templated class to return this classes' type (present in Image/Mask/MaskedImage)
Definition: Image.h:60