29 #ifndef LSST_IMAGE_MASKEDIMAGE_H 30 #define LSST_IMAGE_MASKEDIMAGE_H 38 #include "boost/mpl/at.hpp" 39 #include "boost/iterator/zip_iterator.hpp" 40 #include "boost/tuple/tuple.hpp" 91 template <
typename ImagePT = ImagePixelT,
typename MaskPT = MaskPixelT,
typename VarPT = VariancePixelT>
98 template <
typename,
typename,
typename>
101 template <
typename,
typename,
typename>
104 template <
typename,
typename,
typename>
107 template <
typename,
typename,
typename>
108 class const_MaskedImageLocator;
116 template <
typename ImageIterator,
typename MaskIterator,
typename VarianceIterator,
117 template <
typename>
class Ref =
Reference>
119 typedef boost::tuple<ImageIterator, MaskIterator, VarianceIterator> IMV_iterator_tuple;
125 typedef typename boost::zip_iterator<IMV_iterator_tuple>::reference
IMV_tuple;
129 template <
typename,
typename,
typename>
136 VarianceIterator
const& var)
137 : _iter(
boost::make_zip_iterator(
boost::make_tuple(img, msk, var))) {}
177 return &this->_iter->template get<0>() - &rhs.
_iter->template get<0>();
181 return &this->_iter->template get<0>() == &rhs.
_iter->template get<0>();
185 return &this->_iter->template get<0>() != &rhs.
_iter->template get<0>();
189 return &this->_iter->template get<0>() < &rhs.
_iter->template get<0>();
193 return Pixel(_iter->template get<0>()[0], _iter->template get<1>()[0],
194 _iter->template get<2>()[0]);
203 typename boost::zip_iterator<IMV_iterator_tuple>
_iter;
207 template <
typename ImageIterator,
typename MaskIterator,
typename VarianceIterator>
211 MaskedImageIteratorBase_t;
215 : MaskedImageIteratorBase_t(img, msk, var) {}
226 template <
typename ImageIterator,
typename MaskIterator,
typename VarianceIterator>
229 typename detail::const_iterator_type<MaskIterator>::type,
230 typename detail::const_iterator_type<VarianceIterator>::type,
243 : MaskedImageIteratorBase_t(
244 const_ImageIterator(iter.get_iterator_tuple().template get<0>()),
245 const_MaskIterator(iter.get_iterator_tuple().template get<1>()),
246 const_VarianceIterator(iter.get_iterator_tuple().template get<2>())) {
259 template <
typename ImageLocator,
typename MaskLocator,
typename VarianceLocator,
260 template <
typename>
class Ref =
Reference>
262 typedef typename boost::tuple<ImageLocator, MaskLocator, VarianceLocator> IMVLocator;
268 template <
template <
typename>
class X_OR_Y>
269 class _x_or_y_iterator {
275 X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())() += di;
276 X_OR_Y<MaskLocator>(_mil->_loc.template get<1>())() += di;
277 X_OR_Y<VarianceLocator>(_mil->_loc.template get<2>())() += di;
281 _x_or_y_iterator& operator++() {
283 ++X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())();
284 ++X_OR_Y<MaskLocator>(_mil->_loc.template get<1>())();
285 ++X_OR_Y<VarianceLocator>(_mil->_loc.template get<2>())();
289 bool operator==(_x_or_y_iterator
const& rhs) {
290 return X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())() ==
291 X_OR_Y<ImageLocator>(rhs._mil->_loc.template get<0>())();
293 bool operator!=(_x_or_y_iterator
const& rhs) {
294 return X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())() !=
295 X_OR_Y<ImageLocator>(rhs._mil->_loc.template get<0>())();
297 bool operator<(_x_or_y_iterator
const& rhs) {
298 return X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())() <
299 X_OR_Y<ImageLocator>(rhs._mil->_loc.template get<0>())();
303 return Pixel((*(X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())()))[0],
304 (*(X_OR_Y<MaskLocator>(_mil->_loc.template get<1>())()))[0],
305 (*(X_OR_Y<VarianceLocator>(_mil->_loc.template get<2>())()))[0]);
311 return (*(X_OR_Y<ImageLocator>(_mil->_loc.template get<0>())()))[0];
314 return (*(X_OR_Y<MaskLocator>(_mil->_loc.template get<1>())()))[0];
317 return (*(X_OR_Y<VarianceLocator>(_mil->_loc.template get<2>())()))[0];
325 template <
typename LocT>
327 typedef typename LocT::x_iterator IterT;
330 apply_x(LocT& loc) : _loc(loc) {}
331 IterT& operator()() {
return _loc.x(); }
337 template <
typename LocT>
339 typedef typename LocT::y_iterator IterT;
342 apply_y(LocT& loc) : _loc(loc) {}
343 IterT& operator()() {
return _loc.y(); }
350 typedef typename boost::tuple<
typename ImageLocator::cached_location_t,
351 typename MaskLocator::cached_location_t,
352 typename VarianceLocator::cached_location_t>
363 template <
typename,
typename,
typename>
368 : _imv(loc.template get<0>().cache_location(x, y),
369 loc.template get<1>().cache_location(x, y),
370 loc.template get<2>().cache_location(x, y)) {
378 : _loc(img, msk, var) {
384 return Pixel(_loc.template get<0>().x()[0][0], _loc.template get<1>().
x()[0][0],
385 _loc.template get<2>().
x()[0][0]);
390 return Pixel(_loc.template get<0>()(x, y)[0], _loc.template get<1>()(x, y)[0],
391 _loc.template get<2>()(x, y)[0]);
397 return Pixel(_loc.template get<0>()[cached_loc._imv.template get<0>()][0],
398 _loc.template get<1>()[cached_loc._imv.template get<1>()][0],
399 _loc.template get<2>()[cached_loc._imv.template get<2>()][0]);
405 x_iterator
x() {
return x_iterator(
this); }
411 y_iterator
y() {
return y_iterator(
this); }
414 cached_location_t
cache_location(
int x,
int y)
const {
return cached_location_t(_loc, x, y); }
420 typedef typename boost::mpl::vector<ImagePixelT, MaskPixelT, VariancePixelT>
PixelTVec;
422 template <
typename N>
424 cached_location_t
const& cached_loc) {
425 return _loc.template get<N::value>()[cached_loc._imv.template get<N::value>()][0];
428 template <
typename N>
430 return _loc.template get<N::value>()[0][0];
433 template <
typename N>
435 return _loc.template get<N::value>()(x, y)[0];
442 return apply_IMV<boost::mpl::int_<0>>(cached_loc);
451 return apply_IMV<boost::mpl::int_<1>>(cached_loc);
460 return apply_IMV<boost::mpl::int_<2>>(cached_loc);
466 return apply_IMV<boost::mpl::int_<2>>(
x,
y);
471 return _loc.template get<0>() == rhs.
_loc.template get<0>();
477 return _loc.template get<0>() < rhs.
_loc.template get<0>();
482 return operator+=(detail::difference_type(p.first, p.second));
487 _loc.template get<0>() += p;
488 _loc.template get<1>() += p;
489 _loc.template get<2>() += p;
496 IMVLocator
const&
getLoc()
const {
return _loc; }
503 template <
typename ImageLocator,
typename MaskLocator,
typename VarianceLocator>
509 : MaskedImageLocatorBase_t(img, msk, var) {}
513 template <
typename ImageLocator,
typename MaskLocator,
typename VarianceLocator>
516 typename detail::const_locator_type<MaskLocator>::type,
517 typename detail::const_locator_type<VarianceLocator>::type,
529 : MaskedImageLocatorBase_t(const_ImageLocator(iter.getLoc().template get<0>()),
530 const_MaskLocator(iter.getLoc().template get<1>()),
531 const_VarianceLocator(iter.getLoc().template get<2>())) {
548 #if 0 // doesn't compile. I should fix this, but it's low priority. RHL 598 explicit MaskedImage(
unsigned int width,
unsigned int height,
651 bool conformMasks =
false,
bool needAllHdus =
false,
656 bool allowUnsafe =
false);
679 bool conformMasks =
false,
bool needAllHdus =
false,
684 bool allowUnsafe =
false);
707 bool conformMasks =
false,
bool needAllHdus =
false,
712 bool allowUnsafe =
false);
733 bool const deep =
false);
739 template <
typename OtherPixelT>
744 : _image(), _mask(), _variance() {
747 "Only deep copies are permitted for MaskedImages with different pixel types");
750 _image = ImagePtr(
new Image(*rhs.
getImage(), deep));
751 _mask = MaskPtr(
new Mask(*rhs.
getMask(), deep));
752 _variance = VariancePtr(
new Variance(*rhs.
getVariance(), deep));
873 void scaledMinus(
double const c,
MaskedImage const& rhs);
883 void scaledMultiplies(
double const c,
MaskedImage const& rhs);
893 void scaledDivides(
double const c,
MaskedImage const& rhs);
1103 int getX0()
const {
return _image->getX0(); }
1111 int getY0()
const {
return _image->getY0(); }
1141 _image->setXY0(origin);
1145 _mask->setXY0(origin);
1149 _variance->setXY0(origin);
1161 return getImage()->indexToPosition(ind, xy);
1173 return getImage()->positionToIndex(pos, xy);
1200 fast_iterator begin(
bool contiguous)
const;
1209 fast_iterator
end(
bool contiguous)
const;
1219 typename Image::x_iterator imageEnd = getImage()->x_at(x, y);
1220 typename Mask::x_iterator maskEnd = getMask()->x_at(x, y);
1222 #else // bypass checks for non-NULL pointers 1223 typename Image::x_iterator imageEnd = _image->x_at(x, y);
1224 typename Mask::x_iterator maskEnd = _mask->x_at(x, y);
1228 return x_iterator(imageEnd, maskEnd, varianceEnd);
1239 typename Image::y_iterator imageEnd = getImage()->y_at(x, y);
1240 typename Mask::y_iterator maskEnd = getMask()->y_at(x, y);
1242 #else // bypass checks for non-NULL pointers 1243 typename Image::y_iterator imageEnd = _image->y_at(x, y);
1244 typename Mask::y_iterator maskEnd = _mask->y_at(x, y);
1247 return y_iterator(imageEnd, maskEnd, varianceEnd);
1253 typename Image::xy_locator imageEnd = getImage()->xy_at(x, y);
1254 typename Mask::xy_locator maskEnd = getMask()->xy_at(x, y);
1256 #else // bypass checks for non-NULL pointers 1257 typename Image::xy_locator imageEnd = _image->xy_at(x, y);
1258 typename Mask::xy_locator maskEnd = _mask->xy_at(x, y);
1262 return xy_locator(imageEnd, maskEnd, varianceEnd);
1266 void conformSizes();
1270 VariancePtr _variance;
1276 template <
typename ImagePixelT,
typename MaskPixelT,
typename VariancePixelT>
1288 template <
typename ImagePixelT1,
typename ImagePixelT2>
1310 template <
typename ImageT,
typename TagT>
1312 typedef ImageT
type;
1316 template <
typename ImageT>
1318 typedef typename ImageT::Image
type;
1323 template <
typename ImageT>
1324 struct GetImage :
public GetImage_<ImageT, typename ImageT::image_category> {};
1329 #endif // LSST_IMAGE_MASKEDIMAGE_H
VariancePtr getVariance() const
Return a (shared_ptr to) the MaskedImage's variance.
MaskedImageLocatorBase & operator+=(detail::difference_type p)
Increment the locator's x and y positions by p
cached_location_t cache_location(int x, int y) const
Create a cached_location_t offset by (x, y) from locator.
MaskedImageIterator operator+(std::ptrdiff_t delta)
Return a MaskedImageIterator that's delta beyond this.
std::pair< int, double > positionToIndex(double const pos, lsst::afw::image::xOrY const xy) const
Convert image position to index (see Image::positionToIndex)
Ref< ImagePixelT >::type image(int x, int y)
Return a reference to the image offset by (x, y) from the current position of the locator...
void scaledPlus(OutImageT &outImage, double c1, InImageT const &inImage1, double c2, InImageT const &inImage2)
Compute the scaled sum of two images.
Ref< ImagePixelT >::type image(cached_location_t const &cached_loc)
Return a reference to the image at the offset set when we created the cached_location_t ...
Ref< MaskPixelT >::type mask()
Return (a reference to) the mask part of the Pixel pointed at by the iterator.
Ref< MaskPixelT >::type mask()
Return a reference to the mask at the current position of the locator.
const_MaskedImageLocator< typename Image::xy_locator, typename Mask::xy_locator, typename Variance::xy_locator > const_xy_locator
A const_locator for a MaskedImage.
y_iterator y()
Return an iterator that can be used to move (or dereference) a locator.
MaskedImageIteratorBase(ImageIterator const &img, MaskIterator const &msk, VarianceIterator const &var)
Construct a MaskedImageIteratorBase from the image/mask/variance iterators.
The base class for MaskedImageLocators (const and non-const)
MaskedImageLocator(ImageLocator &img, MaskLocator &msk, VarianceLocator &var)
MaskedImage & operator-=(lsst::afw::math::Function2< double > const &function)
Ref< typename boost::mpl::at< PixelTVec, N >::type >::type apply_IMV(int x, int y)
boost::mpl::vector< ImagePixelT, MaskPixelT, VariancePixelT > PixelTVec
_view_t::reverse_iterator reverse_iterator
An STL compliant reverse iterator.
std::shared_ptr< image::Mask< MaskPixelT > > MaskPtr
shared pointer to the Mask
const_MaskedImageIterator< typename Image::iterator, typename Mask::iterator, typename Variance::iterator > const_iterator
boost::zip_iterator< IMV_iterator_tuple > _iter
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.
float Pixel
Typedefs to be used for pixel values.
Pixel type
Type pointed to by the iterator.
A templated class to return this classes' type (present in Image/Mask/MaskedImage) ...
Pixel operator()(int x, int y)
Dereference a locator, returning a Pixel offset by (x, y) from the locator.
lsst::afw::image::pixel::Pixel< ImagePixelT, MaskPixelT, VariancePixelT > Pixel
A Pixel in the MaskedImage.
x_iterator fast_iterator
A fast STL compliant iterator for contiguous images N.b.
const_MaskedImageLocator(MaskedImageLocator< ImageLocator, MaskLocator, VarianceLocator > const &iter)
boost::tuple< typename ImageLocator::cached_location_t, typename MaskLocator::cached_location_t, typename VarianceLocator::cached_location_t > IMVCachedLocation
y_iterator y_at(int x, int y) const
Return an y_iterator at the point (x, y)
std::map< std::string, int > MaskPlaneDict
std::shared_ptr< Image< PixelT > > operator*(Image< PixelT > const &img, ImageSlice< PixelT > const &slc)
Overload operator*()
Pixel operator*()
Dereference a locator, returning a Pixel.
Options for writing an image to FITS.
Ref< VariancePixelT >::type variance(int x, int y)
Return a reference to the variance offset by (x, y) from the current position of the locator...
bool operator==(MaskedImageIteratorBase const &rhs)
Return true if the lhs equals the rhs.
_view_t::x_iterator x_iterator
An iterator for traversing the pixels in a row.
Pixel operator[](cached_location_t const &cached_loc)
Dereference a locator, returning a Pixel offset by the amount set when we created the cached_location...
Ref< typename boost::mpl::at< PixelTVec, N >::type >::type apply_IMV(cached_location_t const &cached_loc)
The base class for MaskedImageIterators (const and non-const)
MaskedImage operator[](lsst::geom::Box2I const &bbox) const
Return a subimage corresponding to the given box (interpreted as PARENT coordinates).
MaskedImageIterator< typename Image::x_iterator, typename Mask::x_iterator, typename Variance::x_iterator > x_iterator
An iterator to a row of a MaskedImage.
Ref< MaskPixelT >::type mask(cached_location_t const &cached_loc)
Return a reference to the mask at the offset set when we created the cached_location_t ...
void setXY0(lsst::geom::Point2I const origin)
Set the MaskedImage's origin.
lsst::afw::image::pixel::SinglePixel< ImagePixelT, MaskPixelT, VariancePixelT > SinglePixel
A single Pixel of the same type as those in the MaskedImage.
A single pixel of the same type as a MaskedImage.
std::shared_ptr< image::Image< VariancePixelT > > VariancePtr
shared pointer to the variance Image
MaskedImageIteratorBase operator++(int)
Increment the iterator (postfix)
ItemVariant const * other
MaskedImage & operator-=(lsst::afw::image::Image< ImagePixelT > const &rhs)
cached_location_t(IMVLocator const &loc, int x, int y)
Create a cached_location_t that can be used to access pixels (x, y) away from loc ...
A simple struct that combines the two arguments that must be passed to most cfitsio routines and cont...
lsst::geom::Point2I getXY0() const
Return the image's origin.
lsst::afw::image::Mask< MaskPixelT > Mask
MaskedImageIteratorBase & operator+=(std::ptrdiff_t delta)
Increment the iterator by delta
A Function taking two arguments.
MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT > * makeMaskedImage(typename std::shared_ptr< Image< ImagePixelT >> image, typename std::shared_ptr< Mask< MaskPixelT >> mask=Mask< MaskPixelT >(), typename std::shared_ptr< Image< VariancePixelT >> variance=Image< VariancePixelT >())
A function to return a MaskedImage of the correct type (cf.
x_iterator x_at(int x, int y) const
Return an x_iterator at the point (x, y)
const_MaskedImageIterator & operator+(std::ptrdiff_t delta)
Return a const_MaskedImageIterator that's delta beyond this.
MaskedImageIterator< typename Image::iterator, typename Mask::iterator, typename Variance::iterator > iterator
Ref< VariancePixelT >::type variance()
Return (a reference to) the variance part of the Pixel pointed at by the iterator.
bool operator==(MaskedImageLocatorBase const &rhs)
Return true iff two locators are equal.
Mask< MaskPixelT >::MaskPlaneDict MaskPlaneDict
The Mask's MaskPlaneDict.
lsst::geom::Extent2I getDimensions() const
ImagePtr getImage() const
Return a (shared_ptr to) the MaskedImage's image.
An iterator to the MaskedImage.
MaskedImage & operator/=(lsst::afw::image::Image< ImagePixelT > const &rhs)
bool operator!=(MaskedImageIteratorBase const &rhs)
Return true if the lhs doesn't equal the rhs.
MaskedImage & operator+=(lsst::afw::math::Function2< double > const &function)
_view_t::iterator iterator
An STL compliant iterator.
A locator for the MaskedImage.
double indexToPosition(double ind, lsst::afw::image::xOrY const xy) const
Convert image index to image position (see Image::indexToPosition)
_x_or_y_iterator< apply_x > x_iterator
An x_iterator that provides a view of the xy_locator (i.e. advancing one advances the other) ...
afw::table::PointKey< int > dimensions
int getHeight() const
Return the number of rows in the image.
MaskedImage(MaskedImage< OtherPixelT, MaskPixelT, VariancePixelT > const &rhs, const bool deep)
generalised copy constructor; defined here in the header so that the compiler can instantiate N(N-1)/...
A base class for image defects.
IMVLocator const & getLoc() const
int getX0() const
Return the image's column-origin.
static MaskedImage readFits(fits::MemFileManager &manager)
Read a MaskedImage from a FITS RAM file.
Represent a 2-dimensional array of bitmask pixels.
MaskedImageIterator< typename Image::y_iterator, typename Mask::y_iterator, typename Variance::y_iterator > y_iterator
An iterator to a column of a MaskedImage.
Lifetime-management for memory that goes into FITS memory files.
const_MaskedImageIterator< typename Image::y_iterator, typename Mask::y_iterator, typename Variance::y_iterator > const_y_iterator
A const_iterator to a column of a MaskedImage.
A traits class for MaskedImage.
_x_or_y_iterator< apply_y > y_iterator
A y_iterator that provides a view of the xy_locator (i.e. advancing one advances the other) ...
const IMV_iterator_tuple get_iterator_tuple() const
Return the underlying iterator tuple.
const Pixel operator*() const
Dereference the iterator, returning a const Pixel.
A class to manipulate images, masks, and variance as a single object.
_view_t::y_iterator y_iterator
An iterator for traversing the pixels in a column.
MaskedImageIterator< typename Image::reverse_iterator, typename Mask::reverse_iterator, typename Variance::reverse_iterator > reverse_iterator
std::shared_ptr< image::Image< ImagePixelT > > ImagePtr
shared pointer to the Image
bool imagesOverlap(ImageBase< T1 > const &image1, ImageBase< T2 > const &image2)
Return true if the pixels for two images or masks overlap in memory.
detail::MaskedImage_tag image_category
boost::zip_iterator< IMV_iterator_tuple >::reference IMV_tuple
The underlying iterator tuple.
Ref< ImagePixelT >::type image()
Return (a reference to) the image part of the Pixel pointed at by the iterator.
A saved relative position, providing efficient access to neighbouring pixels.
std::int32_t MaskPixel
default type for Masks and MaskedImage Masks
Pixel operator*()
Dereference the iterator, returning a Pixel.
void setMask(Mask const &other)
Set the mask plane's pixel values to those of another Mask.
bool operator!=(MaskedImageLocatorBase const &rhs)
Return true iff two locators are not equal.
lsst::afw::image::Image< VariancePixelT > Variance
MaskPtr getMask() const
Return a (shared_ptr to) the MaskedImage's mask.
std::string const compressedFileNoMEF_RE
regexp to identify compressed files that we can't write MEFs to
void swap(Image< PixelT > &a, Image< PixelT > &b)
int getY0() const
Return the image's row-origin.
std::ptrdiff_t operator-(MaskedImageIteratorBase const &rhs)
Return the distance between two iterators.
#define LSST_EXCEPT(type,...)
Create an exception with a given type.
Ref< ImagePixelT >::type image()
Return a reference to the image at the current position of the locator.
x_iterator x()
Return an iterator that can be used to move (or dereference) a locator.
A pixel of a MaskedImage.
MaskedImageIteratorBase & operator++()
Increment the iterator (prefix)
An const iterator to the MaskedImage.
MaskedImage & operator+=(lsst::afw::image::Image< ImagePixelT > const &rhs)
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.
std::string const fitsFile_RE
regexp to identify when MaskedImages should be written as MEFs
MaskedImageIterator(ImageIterator &img, MaskIterator &msk, VarianceIterator &var)
MaskedImageIteratorBase & operator-=(std::ptrdiff_t delta)
Decrement the iterator by delta
const_MaskedImageIterator(MaskedImageIterator< ImageIterator, MaskIterator, VarianceIterator > const &iter)
void setXY0(int const x0, int const y0)
Set the MaskedImage's origin.
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.
bool operator<(MaskedImageLocatorBase const &rhs)
Return true iff lhs is less than rhs.
Ref< MaskPixelT >::type mask(int x, int y)
Return a reference to the mask offset by (x, y) from the current position of the locator.
void setImage(Image const &other)
Set the image plane's pixel values to those of another Image.
Ref< VariancePixelT >::type variance()
Return a reference to the variance at the current position of the locator.
MaskedImage subset(lsst::geom::Box2I const &bbox, ImageOrigin origin=PARENT) const
Return a subimage corresponding to the given box.
Reports invalid arguments.
void setVariance(Variance const &other)
Set the variance plane's pixel values to those of another Image.
int getWidth() const
Return the number of columns in the image.
MaskedImageLocator< typename Image::xy_locator, typename Mask::xy_locator, typename Variance::xy_locator >::x_iterator xy_x_iterator
an x_iterator associated with an xy_locator
static MaskedImage readFits(std::string const &filename)
Read a MaskedImage from a regular FITS file.
MaskedImage & operator*=(lsst::afw::image::Image< ImagePixelT > const &rhs)
MaskedImage< ImagePT, MaskPT, VarPT > type
Return the desired type.
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. ...
lsst::afw::image::Image< ImagePixelT > Image
MaskedImageLocator< typename Image::xy_locator, typename Mask::xy_locator, typename Variance::xy_locator > xy_locator
A locator for a MaskedImage.
MaskedImageLocator< typename Image::xy_locator, typename Mask::xy_locator, typename Variance::xy_locator >::y_iterator xy_y_iterator
an y_iterator associated with an xy_locator
Backwards-compatibility support for depersisting the old Calib (FluxMag0/FluxMag0Err) objects...
bool operator<(MaskedImageIteratorBase const &rhs)
Return true if the lhs is less than the rhs.
Ref< VariancePixelT >::type variance(cached_location_t const &cached_loc)
Return a reference to the variance at the offset set when we created the cached_location_t ...
float VariancePixel
default type for MaskedImage variance images
lsst::geom::Box2I getBBox(ImageOrigin const origin=PARENT) const
A class used to identify classes that represent MaskedImage pixels.
MaskedImageLocatorBase(ImageLocator const &img, MaskLocator const &msk, VarianceLocator const &var)
Construct a MaskedImageLocator from image/mask/variance locators.
_view_t::xy_locator xy_locator
An xy_locator.
An integer coordinate rectangle.
A class to represent a 2-dimensional array of pixels.
MaskedImageLocatorBase & operator+=(pair2I const &p)
Increment the locator's x and y positions by p
const_MaskedImageIterator< typename Image::x_iterator, typename Mask::x_iterator, typename Variance::x_iterator > const_x_iterator
A const_iterator to a row of a MaskedImage.
xy_locator xy_at(int x, int y) const
Return an xy_locator at the point (x, y)
A const locator for the MaskedImage.
metafunction to extract reference type from PixelT
Ref< typename boost::mpl::at< PixelTVec, N >::type >::type apply_IMV()
metafunction to extract const reference type from PixelT