latest version v1.9 - last update 10 Apr 2010 |
Merge HSV channels (Hue, Saturation, Value). More...
#include <ltiMergeHSVToImage.h>
Public Member Functions | |
virtual const char * | getTypeName () const |
virtual functor * | clone () const |
virtual bool | apply (const matrix< float > &H, const matrix< float > &S, const matrix< float > &V, image &img) const |
virtual bool | apply (const channel8 &H, const channel8 &S, const channel8 &V, image &img) const |
virtual bool | apply (const float &H, const float &S, const float &V, rgbPixel &pixel) const |
virtual bool | apply (const ubyte &H, const ubyte &S, const ubyte &V, rgbPixel &pixel) const |
Merge HSV channels (Hue, Saturation, Value).
virtual bool lti::mergeHSVToImage::apply | ( | const ubyte & | H, | |
const ubyte & | S, | |||
const ubyte & | V, | |||
rgbPixel & | pixel | |||
) | const [virtual] |
merge the hue value H, saturation S and value value V into a pixel
H | the hue value | |
S | the saturation value | |
V | the value value | |
pixel | the merged pixel |
Implements lti::mergeImage.
virtual bool lti::mergeHSVToImage::apply | ( | const float & | H, | |
const float & | S, | |||
const float & | V, | |||
rgbPixel & | pixel | |||
) | const [virtual] |
merge the hue value H, saturation S and value value V into a pixel
H | the hue value | |
S | the saturation value | |
V | the value value | |
pixel | the merged pixel |
Implements lti::mergeImage.
virtual functor* lti::mergeHSVToImage::clone | ( | ) | const [virtual] |
returns a poinbter to a clone of the functor
Implements lti::functor.
virtual const char* lti::mergeHSVToImage::getTypeName | ( | ) | const [virtual] |
returns the name of this type
Reimplemented from lti::mergeImage.