#include "img/img_image.h"
Go to the source code of this file.
Namespaces | |
namespace | img |
the img module namespace | |
Functions | |
template<int Channels, typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_range_0_1_to_0_255 (const Image< Channels, SrcScalarType, SrcSafe > &source, Image< Channels, DestScalarType, DestSafe > &destination) |
template<int Channels, typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_range_0_255_to_0_1 (const Image< Channels, SrcScalarType, SrcSafe > &source, Image< Channels, DestScalarType, DestSafe > &destination) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_RGB_to_RGBA (const Image< 3, SrcScalarType, SrcSafe > &source, Image< 4, DestScalarType, DestSafe > &destination, DestScalarType alpha_value=255.0f) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_RGB_to_Y (const Image< 3, SrcScalarType, SrcSafe > &source, Image< 1, DestScalarType, DestSafe > &destination) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_RGBA_to_RGB (const Image< 4, SrcScalarType, SrcSafe > &source, Image< 3, DestScalarType, DestSafe > &destination) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_RGBA_to_Y (const Image< 4, SrcScalarType, SrcSafe > &source, Image< 1, DestScalarType, DestSafe > &destination) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_Y_to_RGB (const Image< 1, SrcScalarType, SrcSafe > &source, Image< 3, DestScalarType, DestSafe > &destination) |
template<typename SrcScalarType , bool SrcSafe, typename DestScalarType , bool DestSafe> | |
void | img::convert_Y_to_RGBA (const Image< 1, SrcScalarType, SrcSafe > &source, Image< 4, DestScalarType, DestSafe > &destination, DestScalarType alpha_value=255.0f) |