|
LSST Applications g04a91732dc+b257dfc5ef,g07dc498a13+7e3c5f68a2,g12483e3c20+719ef69748,g1409bbee79+7e3c5f68a2,g1a7e361dbc+7e3c5f68a2,g1fd858c14a+9f35e23ec3,g35bb328faa+fcb1d3bbc8,g3bd4b5ce2c+376b67b515,g4e0f332c67+5d362be553,g53246c7159+fcb1d3bbc8,g60b5630c4e+719ef69748,g6a5c94f25a+5f44f05f97,g78460c75b0+2f9a1b4bcd,g786e29fd12+cf7ec2a62a,g794fd9dcec+ed0768eb49,g7b71ed6315+fcb1d3bbc8,g8852436030+a85a031248,g89139ef638+7e3c5f68a2,g9125e01d80+fcb1d3bbc8,g919ac25b3e+7deac9a2c2,g95236ca021+f7a31438ed,g989de1cb63+7e3c5f68a2,g9f33ca652e+c9b5dfb7a3,ga9baa6287d+719ef69748,gaaedd4e678+7e3c5f68a2,gabe3b4be73+1e0a283bba,gb1101e3267+5c5d870f02,gb44bc621b2+6e77abaf78,gb58c049af0+f03b321e39,gbaa7868d32+719ef69748,gc45c3306ec+33b3578538,gc99c83e5f0+76d20ab76d,gcf25f946ba+a85a031248,gd315a588df+0122250889,gd6cbbdb0b4+c8606af20c,gde0f65d7ad+aaea62184c,ge278dab8ac+932305ba37,gfba249425e+fcb1d3bbc8,w.2025.08
LSST Data Management Base Package
|
#include <string>#include <climits>#include <memory>#include "lsst/geom.h"#include "lsst/afw/image/ImageBase.h"#include "lsst/afw/image/Mask.h"#include "lsst/afw/math/Function.h"#include "lsst/daf/base/PropertySet.h"#include "ndarray.h"Go to the source code of this file.
Classes | |
| class | lsst::afw::image::Image< PixelT > |
| A class to represent a 2-dimensional array of pixels. More... | |
| struct | lsst::afw::image::Image< PixelT >::ImageTypeFactory< ImagePT > |
| A templated class to return this classes' type (present in Image/Mask/MaskedImage) More... | |
| class | lsst::afw::image::DecoratedImage< PixelT > |
| A container for an Image and its associated metadata. More... | |
Namespaces | |
| namespace | lsst |
| namespace | lsst::afw |
| namespace | lsst::afw::image |
Functions | |
| template<typename LhsPixelT, typename RhsPixelT> | |
| Image< LhsPixelT > & | lsst::afw::image::operator+= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs) |
| Add lhs to Image rhs (i.e. pixel-by-pixel addition) where types are different. | |
| template<typename LhsPixelT, typename RhsPixelT> | |
| Image< LhsPixelT > & | lsst::afw::image::operator-= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs) |
| Subtract lhs from Image rhs (i.e. pixel-by-pixel subtraction) where types are different. | |
| template<typename LhsPixelT, typename RhsPixelT> | |
| Image< LhsPixelT > & | lsst::afw::image::operator*= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs) |
| Multiply lhs by Image rhs (i.e. pixel-by-pixel multiplication) where types are different. | |
| template<typename LhsPixelT, typename RhsPixelT> | |
| Image< LhsPixelT > & | lsst::afw::image::operator/= (Image< LhsPixelT > &lhs, Image< RhsPixelT > const &rhs) |
| Divide lhs by Image rhs (i.e. pixel-by-pixel division) where types are different. | |
| template<typename PixelT> | |
| void | lsst::afw::image::swap (Image< PixelT > &a, Image< PixelT > &b) |
| template<typename PixelT> | |
| void | lsst::afw::image::swap (DecoratedImage< PixelT > &a, DecoratedImage< PixelT > &b) |
| lsst::geom::Box2I | lsst::afw::image::bboxFromMetadata (daf::base::PropertySet &metadata) |
| Determine the image bounding box from its metadata (FITS header) | |
| template<typename T1, typename T2> | |
| bool | lsst::afw::image::imagesOverlap (ImageBase< T1 > const &image1, ImageBase< T2 > const &image2) |
| Return true if the pixels for two images or masks overlap in memory. | |