File SpanPixelIterator.h

namespace lsst

Class for a simple mapping implementing a generic AstrometryTransform.

Remove all non-astronomical counts from the Chunk Exposure’s pixels.

Forward declarations for lsst::utils::Cache

For details on the Cache class, see the Cache.h file.

It uses a template rather than a pointer so that the derived classes can use the specifics of the transform. The class simplePolyMapping overloads a few routines.

A base class for image defects

Numeric constants used by the Integrate.h integrator routines.

Compute Image Statistics

Note

Gauss-Kronrod-Patterson quadrature coefficients for use in quadpack routine qng. These coefficients were calculated with 101 decimal digit arithmetic by L. W. Fullerton, Bell Labs, Nov 1981.

Note

The Statistics class itself can only handle lsst::afw::image::MaskedImage() types. The philosophy has been to handle other types by making them look like lsst::afw::image::MaskedImage() and reusing that code. Users should have no need to instantiate a Statistics object directly, but should use the overloaded makeStatistics() factory functions.

namespace afw
namespace geom
class SpanPixelIterator : public boost::iterator_facade<SpanPixelIterator, lsst::geom::Point2I const, boost::random_access_traversal_tag>
#include <SpanPixelIterator.h>

An iterator that yields lsst::geom::Point2I and increases in the x direction.

This is used to iterate over the pixels in a Span, and by extension to iterate over regions like boxes and ellipses.

Public Functions

SpanPixelIterator(lsst::geom::Point2I const &p = lsst::geom::Point2I())
SpanPixelIterator(SpanPixelIterator const&)
SpanPixelIterator(SpanPixelIterator&&)
SpanPixelIterator &operator=(SpanPixelIterator const&)
SpanPixelIterator &operator=(SpanPixelIterator&&)
~SpanPixelIterator()

Private Functions

lsst::geom::Point2I const &dereference() const
void increment()
void decrement()
void advance(int n)
bool equal(SpanPixelIterator const &other) const
int distance_to(SpanPixelIterator const &other) const

Private Members

lsst::geom::Point2I _p

Friends

friend lsst::afw::geom::boost::iterator_core_access