Loading [MathJax]/extensions/tex2jax.js
LSST Applications g04a91732dc+19896f930c,g07dc498a13+7851b72aa9,g1409bbee79+7851b72aa9,g1a7e361dbc+7851b72aa9,g1fd858c14a+20ff020745,g33399d78f5+1e8c902ae0,g35bb328faa+e55fef2c71,g3bd4b5ce2c+617a7bf352,g3dabb73f91+2bc5c4dee7,g53246c7159+e55fef2c71,g579b87e3d2+a58ba40925,g60b5630c4e+f4c5a43ed7,g6b5a48f68c+364f72e303,g78460c75b0+8427c4cc8f,g786e29fd12+307f82e6af,g8534526c7b+8e1c6b434f,g89139ef638+7851b72aa9,g8b49a6ea8e+f4c5a43ed7,g9125e01d80+e55fef2c71,g989de1cb63+7851b72aa9,g9f33ca652e+de962dd473,gaaedd4e678+7851b72aa9,gabe3b4be73+9c0c3c7524,gb1101e3267+123e1731e9,gb58c049af0+28045f66fd,gca43fec769+e55fef2c71,gce7788e931+2f36668d29,gcf25f946ba+1e8c902ae0,gd397e13551+789ef91f8b,gd6cbbdb0b4+f6e5445f66,gde0f65d7ad+86c64e11cb,ge278dab8ac+b4c2c8faf7,geab183fbe5+f4c5a43ed7,gecb8035dfe+1f480bec5e,gf58bf46354+e55fef2c71,gf5e906f001+f4c5a43ed7,gf92a8ffd38+e7bc33f3ea,gfe7187db8c+c470145d23,w.2025.03
LSST Data Management Base Package
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Image.h File Reference
#include <string>
#include <climits>
#include <memory>
#include "lsst/geom.h"
#include "lsst/afw/image/ImageBase.h"
#include "lsst/afw/image/Mask.h"
#include "lsst/afw/math/Function.h"
#include "lsst/daf/base/PropertySet.h"
#include "ndarray.h"

Go to the source code of this file.

Classes

class  lsst::afw::image::Image< typename >
 A class to represent a 2-dimensional array of pixels. More...
 
struct  lsst::afw::image::Image< typename >::ImageTypeFactory< ImagePT >
 A templated class to return this classes' type (present in Image/Mask/MaskedImage) More...
 
class  lsst::afw::image::DecoratedImage< PixelT >
 A container for an Image and its associated metadata. More...
 

Namespaces

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

Functions

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.
 
template<typename PixelT >
void lsst::afw::image::swap (Image< PixelT > &a, Image< PixelT > &b)
 
template<typename PixelT >
void lsst::afw::image::swap (DecoratedImage< PixelT > &a, DecoratedImage< PixelT > &b)
 
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.