Go to the source code of this file.
|
template<typename ImageT > |
std::shared_ptr< ImageT > | lsst::afw::math::offsetImage (ImageT const &image, float dx, float dy, std::string const &algorithmName="lanczos5", unsigned int buffer=0) |
| Return an image offset by (dx, dy) using the specified algorithm.
|
|
template<typename ImageT > |
std::shared_ptr< ImageT > | lsst::afw::math::rotateImageBy90 (ImageT const &image, int nQuarter) |
| Rotate an image by an integral number of quarter turns.
|
|
template<typename ImageT > |
std::shared_ptr< ImageT > | lsst::afw::math::flipImage (ImageT const &inImage, bool flipLR, bool flipTB) |
| Flip an image left–right and/or top–bottom.
|
|
template<typename ImageT > |
std::shared_ptr< ImageT > | lsst::afw::math::binImage (ImageT const &inImage, int const binX, int const binY, lsst::afw::math::Property const flags=lsst::afw::math::MEAN) |
|
template<typename ImageT > |
std::shared_ptr< ImageT > | lsst::afw::math::binImage (ImageT const &inImage, int const binsize, lsst::afw::math::Property const flags=lsst::afw::math::MEAN) |
|