|
| MaskedImageLocatorBase (ImageLocator const &img, MaskLocator const &msk, VarianceLocator const &var) |
| Construct a MaskedImageLocator from image/mask/variance locators. More...
|
|
Pixel | operator* () |
| Dereference a locator, returning a Pixel. More...
|
|
Pixel | operator() (int x, int y) |
| Dereference a locator, returning a Pixel offset by (x, y) from the locator. More...
|
|
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_t More...
|
|
x_iterator | x () |
| Return an iterator that can be used to move (or dereference) a locator. More...
|
|
y_iterator | y () |
| Return an iterator that can be used to move (or dereference) a locator. More...
|
|
cached_location_t | cache_location (int x, int y) const |
| Create a cached_location_t offset by (x, y) from locator. More...
|
|
template<typename N > |
Ref< typenameboost::mpl::at< PixelTVec, N >::type >::type | apply_IMV (cached_location_t const &cached_loc) |
|
template<typename N > |
Ref< typenameboost::mpl::at< PixelTVec, N >::type >::type | apply_IMV () |
|
template<typename N > |
Ref< typenameboost::mpl::at< PixelTVec, N >::type >::type | apply_IMV (int x, int y) |
|
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 More...
|
|
Ref< ImagePixelT >::type | image () |
| Return a reference to the image at the current position of the locator. More...
|
|
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. More...
|
|
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 More...
|
|
Ref< MaskPixelT >::type | mask () |
| Return a reference to the mask at the current position of the locator. More...
|
|
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. More...
|
|
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 More...
|
|
Ref< VariancePixelT >::type | variance () |
| Return a reference to the variance at the current position of the locator. More...
|
|
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. More...
|
|
bool | operator== (MaskedImageLocatorBase const &rhs) |
| Return true iff two locators are equal. More...
|
|
bool | operator!= (MaskedImageLocatorBase const &rhs) |
| Return true iff two locators are not equal. More...
|
|
bool | operator< (MaskedImageLocatorBase const &rhs) |
| Return true iff lhs is less than rhs. More...
|
|
MaskedImageLocatorBase & | operator+= (pair2I const &p) |
| Increment the locator's x and y positions by p More...
|
|
MaskedImageLocatorBase & | operator+= (detail::difference_type p) |
| Increment the locator's x and y positions by p More...
|
|
IMVLocator const & | getLoc () const |
|
template<typename ImagePixelT, typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator, typename MaskLocator, typename VarianceLocator, template< typename > class Ref = Reference>
class lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageLocatorBase< ImageLocator, MaskLocator, VarianceLocator, Ref >
The base class for MaskedImageLocators (const and non-const)
Definition at line 259 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
using lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageLocatorBase< ImageLocator, MaskLocator, VarianceLocator, Ref >::IMVCachedLocation = typename boost::tuple<typename ImageLocator::cached_location_t, typename MaskLocator::cached_location_t, typename VarianceLocator::cached_location_t> |
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
An x_iterator that provides a view of the xy_locator (i.e. advancing one advances the other)
Definition at line 350 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
A y_iterator that provides a view of the xy_locator (i.e. advancing one advances the other)
Definition at line 352 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
lsst::afw::image::MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT >::MaskedImageLocatorBase< ImageLocator, MaskLocator, VarianceLocator, Ref >::MaskedImageLocatorBase |
( |
ImageLocator const & |
img, |
|
|
MaskLocator const & |
msk, |
|
|
VarianceLocator const & |
var |
|
) |
| |
|
inline |
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename N >
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename N >
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the image at the current position of the locator.
Definition at line 440 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the image offset by (x, y)
from the current position of the locator.
Definition at line 442 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the mask at the current position of the locator.
Definition at line 449 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the mask offset by (x, y)
from the current position of the locator.
Definition at line 451 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return true iff two locators are not equal.
Definition at line 469 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Dereference a locator, returning a Pixel offset by (x, y)
from the locator.
Definition at line 384 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Dereference a locator, returning a Pixel.
Definition at line 378 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Increment the locator's x
and y
positions by p
Definition at line 481 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Increment the locator's x
and y
positions by p
Definition at line 476 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return true iff lhs is less than rhs.
Definition at line 471 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return true iff two locators are equal.
Definition at line 465 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the variance at the current position of the locator.
Definition at line 458 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return a reference to the variance offset by (x, y)
from the current position of the locator.
Definition at line 460 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return an iterator that can be used to move (or dereference) a locator.
- Note
- this x_locator is xy_locator::x_locator, not MaskedImage::x_locator
Definition at line 400 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>
Return an iterator that can be used to move (or dereference) a locator.
- Note
- this y_locator is xy_locator::y_locator, not MaskedImage::y_locator
Definition at line 406 of file MaskedImage.h.
template<typename ImagePixelT , typename MaskPixelT = lsst::afw::image::MaskPixel, typename VariancePixelT = lsst::afw::image::VariancePixel>
template<typename ImageLocator , typename MaskLocator , typename VarianceLocator , template< typename > class Ref = Reference>