LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Classes | Namespaces | Functions
ImageSlice.h File Reference
#include "lsst/afw/image/Image.h"

Go to the source code of this file.

Classes

class  lsst::afw::image::ImageSlice< PixelT >
 A class to specify a slice of an image. More...
 
struct  lsst::afw::image::details::Plus< PixelT >
 
struct  lsst::afw::image::details::Minus< PixelT >
 
struct  lsst::afw::image::details::Mult< PixelT >
 
struct  lsst::afw::image::details::Div< PixelT >
 

Namespaces

 lsst
 A base class for image defects.
 
 lsst::afw
 
 lsst::afw::image
 Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects.
 
 lsst::afw::image::details
 

Functions

template<typename OperatorT , typename PixelT >
void lsst::afw::image::details::operate (Image< PixelT > &img, ImageSlice< PixelT > const &slc, typename ImageSlice< PixelT >::ImageSliceType sliceType)
 A function to loop over pixels and perform the requested operation. More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator+ (Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
 Overload operator+() More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator+ (ImageSlice< PixelT > const &slc, Image< PixelT > const &img)
 Overload operator+() More...
 
template<typename PixelT >
void lsst::afw::image::operator+= (Image< PixelT > &img, ImageSlice< PixelT > const &slc)
 Overload operator+=() More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator- (Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
 Overload operator-() More...
 
template<typename PixelT >
void lsst::afw::image::operator-= (Image< PixelT > &img, ImageSlice< PixelT > const &slc)
 Overload operator-=() More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator* (Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
 Overload operator*() More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator* (ImageSlice< PixelT > const &slc, Image< PixelT > const &img)
 Overload operator*() More...
 
template<typename PixelT >
void lsst::afw::image::operator*= (Image< PixelT > &img, ImageSlice< PixelT > const &slc)
 Overload operator*=() More...
 
template<typename PixelT >
std::shared_ptr< Image< PixelT > > lsst::afw::image::operator/ (Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
 Overload operator/() More...
 
template<typename PixelT >
void lsst::afw::image::operator/= (Image< PixelT > &img, ImageSlice< PixelT > const &slc)
 Overload operator/=() More...