|
lsst.afw g3a5ebb7d8a+28b83bf6a5
|
#include <list>#include <map>#include <memory>#include <ostream>#include <string>#include "boost/mpl/at.hpp"#include "boost/mpl/vector.hpp"#include "boost/iterator/zip_iterator.hpp"#include "boost/tuple/tuple.hpp"#include "lsst/afw/image/Image.h"#include "lsst/afw/image/Mask.h"#include "lsst/afw/image/Pixel.h"#include "lsst/afw/image/LsstImageTypes.h"Go to the source code of this file.
Namespaces | |
| namespace | lsst |
| namespace | lsst::afw |
| namespace | lsst::afw::image |
| namespace | lsst::afw::image::detail |
Functions | |
| template<typename ImagePixelT, typename MaskPixelT, typename VariancePixelT> | |
| MaskedImage< ImagePixelT, MaskPixelT, VariancePixelT > * | lsst::afw::image::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. | |
| template<typename ImagePixelT1, typename ImagePixelT2> | |
| bool | lsst::afw::image::imagesOverlap (MaskedImage< ImagePixelT1, MaskPixel, VariancePixel > const &image1, MaskedImage< ImagePixelT2, MaskPixel, VariancePixel > const &image2) |
| Return true if the pixels for two masked images (image, variance or mask plane) overlap in memory. | |
Variables | |
| std::string const | lsst::afw::image::detail::fitsFile_RE = "\\.fits(\\.[fg]z)?$" |
| regexp to identify when MaskedImages should be written as MEFs | |
| std::string const | lsst::afw::image::detail::compressedFileNoMEF_RE = "(\\.gz)$" |
| regexp to identify compressed files that we can't write MEFs to | |