|
| template<typename LhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, pixelOp0< LhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func()
|
| |
| template<typename LhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, pixelOp1< LhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func(lhs)
|
| |
| template<typename LhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, pixelOp1XY< LhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func(x, y, lhs)
|
| |
| template<typename LhsT, typename RhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, Image< RhsT > const &rhs, pixelOp1< RhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func(rhs), getting the rhs from an Image<RhsT>
|
| |
| template<typename LhsT, typename RhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, Image< RhsT > const &rhs, pixelOp2< LhsT, RhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func(lhs, rhs), getting the rhs from an Image<RhsT>
|
| |
| template<typename LhsT, typename RhsT> |
| void | lsst::afw::image::for_each_pixel (Image< LhsT > &lhs, Image< RhsT > const &rhs, pixelOp2XY< LhsT, RhsT > const &func) |
| | Set each pixel in an Image<LhsT> to func(x, y, lhs, rhs), getting the rhs from an Image<RhsT>
|
| |