LSST Applications g04e9c324dd+8c5ae1fdc5,g134cb467dc+117d539d04,g1567b3d500+962554ed6b,g199a45376c+0ba108daf9,g1fd858c14a+d7c01f3670,g262e1987ae+992485dba5,g29ae962dfc+fb2cac9599,g2cef7863aa+aef1011c0b,g35bb328faa+8c5ae1fdc5,g3fd5ace14f+9167e9eef8,g47891489e3+f62ff855a3,g4d44eb3520+81c0277221,g53246c7159+8c5ae1fdc5,g67b6fd64d1+f62ff855a3,g67fd3c3899+6fa5e1de0e,g74acd417e5+ca6b50c148,g786e29fd12+668abc6043,g87389fa792+8856018cbb,g89139ef638+f62ff855a3,g8d7436a09f+ce918d9743,g8ea07a8fe4+72e50bfcbe,g90f42f885a+232124b352,g97be763408+6c594bcb10,g9dd6db0277+6fa5e1de0e,ga1ec2daa6e+31e65101ed,ga2a72113ab+fe106acc69,gabf8522325+f227d7ba3a,gac2eed3f23+f62ff855a3,gb89ab40317+f62ff855a3,gbf99507273+8c5ae1fdc5,gc86428ae1c+e4fd9b8f1a,gd8ff7fe66e+6fa5e1de0e,gdab6d2f7ff+ca6b50c148,gdc713202bf+6fa5e1de0e,ge410e46f29+f62ff855a3,geaed405ab2+2322f1d6ea,gf369c2294c+67342c489e,gffca2db377+8c5ae1fdc5,w.2025.34
LSST Data Management Base Package
Loading...
Searching...
No Matches
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< PixelT >
 A class to represent a 2-dimensional array of pixels. More...
 
struct  lsst::afw::image::Image< PixelT >::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.