LSST Applications g0dd1f4853b+10f999ec6a,g1635faa6d4+b976e9dbb0,g1653933729+a8ce1bb630,g28da252d5a+20f909b684,g2bbee38e9b+de1ea1445d,g2bc492864f+de1ea1445d,g2cdde0e794+c2c89b37c4,g3156d2b45e+41e33cbcdc,g347aa1857d+de1ea1445d,g35bb328faa+a8ce1bb630,g3a166c0a6a+de1ea1445d,g3e281a1b8c+9f2c4e2fc3,g414038480c+077ccc18e7,g41af890bb2+fa1be12bb0,g531c6476d5+b4b02c216c,g5fbc88fb19+17cd334064,g781aacb6e4+a8ce1bb630,g7ab3e175f3+14b8e72808,g80478fca09+f5ec7b2bf0,g82479be7b0+0c309e1a1e,g858d7b2824+b4b02c216c,g9125e01d80+a8ce1bb630,ga5288a1d22+46505f0d18,gae0086650b+a8ce1bb630,gb58c049af0+d64f4d3760,gb9c6c11c1e+5a4033fdfe,gc28159a63d+de1ea1445d,gcf0d15dbbd+e25110243b,gd3624f51fd+6b4a7374c1,gda3e153d99+b4b02c216c,gda6a2b7d83+e25110243b,gdaeeff99f8+1711a396fd,ge2409df99d+4338270cf0,ge33fd446bb+b4b02c216c,ge79ae78c31+de1ea1445d,gee3d5c6094+3b2e26a966,gf0baf85859+147a0692ba,gf3967379c6+02b11634a5,w.2024.45
LSST Data Management Base Package
Loading...
Searching...
No Matches
Namespaces | Functions
Image.cc File Reference
#include <cstdint>
#include <functional>
#include "boost/format.hpp"
#include "boost/gil.hpp"
#include "lsst/pex/exceptions.h"
#include "lsst/afw/geom/wcsUtils.h"
#include "lsst/afw/image/Image.h"
#include "lsst/afw/image/ImageAlgorithm.h"
#include "lsst/afw/fits.h"
#include "lsst/afw/image/ImageFitsReader.h"

Go to the source code of this file.

Namespaces

namespace  lsst
 
namespace  lsst::afw
 
namespace  lsst::afw::image
 

Functions

template<typename PixelT >
void lsst::afw::image::swap (ImageBase< PixelT > &a, ImageBase< PixelT > &b)
 
template<typename PixelT >
void lsst::afw::image::swap (Image< PixelT > &a, Image< PixelT > &b)
 
template<typename LhsPixelT , typename RhsPixelT >
Image< LhsPixelT > & lsst::afw::image::operator+= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
 Add lhs to Image rhs (i.e. pixel-by-pixel addition) where types are different.
 
template<typename LhsPixelT , typename RhsPixelT >
Image< LhsPixelT > & lsst::afw::image::operator-= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
 Subtract lhs from Image rhs (i.e. pixel-by-pixel subtraction) where types are different.
 
template<typename LhsPixelT , typename RhsPixelT >
Image< LhsPixelT > & lsst::afw::image::operator*= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
 Multiply lhs by Image rhs (i.e. pixel-by-pixel multiplication) where types are different.
 
template<typename LhsPixelT , typename RhsPixelT >
Image< LhsPixelT > & lsst::afw::image::operator/= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs)
 Divide lhs by Image rhs (i.e. pixel-by-pixel division) where types are different.
 
lsst::geom::Box2I lsst::afw::image::bboxFromMetadata (daf::base::PropertySet &metadata)
 Determine the image bounding box from its metadata (FITS header)
 
template<typename T1 , typename T2 >
bool lsst::afw::image::imagesOverlap (ImageBase< T1 > const &image1, ImageBase< T2 > const &image2)
 Return true if the pixels for two images or masks overlap in memory.