LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Rgb.h
Go to the documentation of this file.
1 #if !defined(LSST_AFW_DISPLAY_RGB_H)
2 #define LSST_AFW_DISPLAY_RGB_H 1
3 
4 namespace lsst { namespace afw { namespace display {
5 
6 template<typename ImageT>
7 void
8 replaceSaturatedPixels(ImageT & rim, //< R image (e.g. i)
9  ImageT & gim, //< G image (e.g. r)
10  ImageT & bim, //< B image (e.g. g)
11  int borderWidth = 2, //< width of border used to estimate colour of saturated regions
12  float saturatedPixelValue = 65535 //< the brightness of a saturated pixel, once fixed
13  );
14 
15 }}}
16 
17 #endif
void ImageT & gim
Definition: Rgb.h:9
void ImageT ImageT & bim
Definition: Rgb.h:9
template void replaceSaturatedPixels(image::MaskedImage< float > &rim, image::MaskedImage< float > &gim, image::MaskedImage< float > &bim, int borderWidth, float saturatedPixelValue)
SetPixels< typename ImageT::Image > setR * rim()), setG(*gim.getImage()), setB(*bim.getImage()
void ImageT ImageT int borderWidth
Definition: Rgb.h:11
void ImageT ImageT int float saturatedPixelValue
Definition: Rgb.h:12