//------------------------------------------------------------------------------ // Basler pylon SDK // Copyright (c) 2010-2021 Basler AG // http://www.baslerweb.com // Author: Andreas Gau //------------------------------------------------------------------------------ /*! \file \brief Contains an image format converter class. */ #ifndef INCLUDED_IMAGEFORMATCONVERTER_H_1564142 #define INCLUDED_IMAGEFORMATCONVERTER_H_1564142 #include #ifdef _MSC_VER # pragma pack(push, PYLON_PACKING) #endif /* _MSC_VER */ #ifdef _MSC_VER #pragma warning( push ) #pragma warning( disable : 4275 ) // Class must have a dll interface to be used by clients of the class. #endif #include #include #include #include namespace Pylon { using namespace Basler_ImageFormatConverterParams; /** \addtogroup Pylon_ImageHandlingSupport * @{ */ /*! \class CImageFormatConverter \brief Creates new images by converting a source image to another format. Supported input image formats defined by the pixel type:
  • PixelType_Mono1packed
  • PixelType_Mono2packed
  • PixelType_Mono4packed
  • PixelType_Mono8
  • PixelType_Mono10
  • PixelType_Mono10packed
  • PixelType_Mono10p
  • PixelType_Mono12
  • PixelType_Mono12packed
  • PixelType_Mono12p
  • PixelType_Mono16
  • PixelType_BayerGR8
  • PixelType_BayerRG8
  • PixelType_BayerGB8
  • PixelType_BayerBG8
  • PixelType_BayerGR10
  • PixelType_BayerRG10
  • PixelType_BayerGB10
  • PixelType_BayerBG10
  • PixelType_BayerGR12
  • PixelType_BayerRG12
  • PixelType_BayerGB12
  • PixelType_BayerBG12
  • PixelType_BayerGR12Packed
  • PixelType_BayerRG12Packed
  • PixelType_BayerGB12Packed
  • PixelType_BayerBG12Packed
  • PixelType_BayerGR10p
  • PixelType_BayerRG10p
  • PixelType_BayerGB10p
  • PixelType_BayerBG10p
  • PixelType_BayerGR12p
  • PixelType_BayerRG12p
  • PixelType_BayerGB12p
  • PixelType_BayerBG12p
  • PixelType_BayerGR16
  • PixelType_BayerRG16
  • PixelType_BayerGB16
  • PixelType_BayerBG16
  • PixelType_RGB8packed
  • PixelType_BGR8packed
  • PixelType_RGBA8packed
  • PixelType_BGRA8packed
  • PixelType_RGB10packed
  • PixelType_BGR10packed
  • PixelType_RGB12packed
  • PixelType_BGR12packed
  • PixelType_RGB12V1packed
  • PixelType_RGB16packed
  • PixelType_RGB8planar
  • PixelType_RGB16planar
  • PixelType_YUV422packed
  • PixelType_YUV422_YUYV_Packed
  • PixelType_YCbCr422_8_YY_CbCr_Semiplanar
  • PixelType_YCbCr420_8_YY_CbCr_Semiplanar
Supported output image formats defined by the pixel type:
  • PixelType_BGRA8packed - This pixel type can be used in Windows bitmaps. See Pylon::SBGRA8Pixel.
  • PixelType_BGR8packed - This pixel type can be used in Windows bitmaps. See Pylon::SBGR8Pixel.
  • PixelType_RGB8packed - See Pylon::SRGB8Pixel.
  • PixelType_RGB16packed - See Pylon::SRGB16Pixel.
  • PixelType_RGB8planar
  • PixelType_RGB16planar
  • PixelType_Mono8
  • PixelType_Mono16
  • PixelType_YUV444planar
  • PixelType_YUV422planar
  • PixelType_YUV420planar
All input image formats can be converted to all output image formats. RGB, BGR and Bayer image formats are converted to monochrome formats by using the following formula: \code mono = (0.25 * red) + (0.625 * green) + (0.125 * blue); \endcode YUV formats are converted to 16 bit bit depth in an intermediate conversion step. This is why the output is always aligned at the most significant bit when converting to 16 bit color output formats like PixelType_RGB16packed. \par Limitations: The last column of a YUV input image with odd width cannot be converted. The last column and the last row of a Bayer input image cannot be converted. The default treatment of rows and columns that cannot be converted due to their location on edges, can be controlled using the CImageFormatConverter::InconvertibleEdgeHandling parameter. See also the Convert() method description. \threading The CImageFormatConverter class is not thread-safe. */ class PYLONUTILITY_API CImageFormatConverter : public CImageFormatConverterParams_Params { public: /*! \brief Creates an image format converter. \error Does not throw C++ exceptions. */ CImageFormatConverter(); /*! \brief Destroys the image format converter. \error Does not throw C++ exceptions. */ virtual ~CImageFormatConverter(); /*! \brief Optionally initializes the image format converter before conversion. \param[in] sourcePixelType The pixel type of the source image.
  • Depending on parameter settings and the input format, data structures required for conversion are created, e.g. lookup tables.
  • Initialization is done automatically when calling Convert() if needed. This may add a delay when converting the first image.
\pre
  • The converter parameters are set up.
  • The \c pixelTypeSource must be supported by the converter.
Lookup tables are created when using monochrome images as input and when the gamma conversion method is selected or when the shift conversion method is selected and the value of AdditionalLeftShift is not zero. The converter can be reinitialized with other settings if required. \error Throws an exception if the passed pixel type does not represent a valid input format. The converter object is still valid after error and can be initialized again. */ virtual void Initialize( EPixelType sourcePixelType ); /*! \brief Returns information about the converter being initialized. \param[in] sourcePixelType The pixel type of the source image. The result depends on the converter settings. \return True if initialized. \error Does not throw C++ exceptions. */ virtual bool IsInitialized( EPixelType sourcePixelType ) const; /*! \brief Destroys data structures required for conversion. This function can be called to free resources held by the format converter. \error Does not throw C++ exceptions. */ virtual void Uninitialize(); /*! \brief Checks to see if a conversion is required or if the source image already has the desired format. \param[in] sourceImage The source image, e.g. a CPylonImage, CPylonBitmapImage, or Grab Result Smart Pointer object. \return Returns true if the source image already has the desired format. A conversion may even be required image format does not change e.g. if the gamma conversion method is selected and the format describes a monochrome image. \error Does not throw C++ exceptions. */ virtual bool ImageHasDestinationFormat( const IImage& sourceImage ) const; /*! \brief Checks to see if a conversion is required or if the source image already has the desired format. \param[in] sourcePixelType The pixel type of the source image. \param[in] sourcePaddingX The number of extra data bytes at the end of each row. The default value is usually 0. \param[in] sourceOrientation The vertical orientation of the image in the image buffer. The default value is usually ImageOrientation_TopDown. \return Returns true if the source image already has the desired format. This is done according to the current converter settings. A conversion may even be required image format does not change e.g. if the gamma conversion method is selected and the format describes a monochrome image. \error Does not throw C++ exceptions. */ virtual bool ImageHasDestinationFormat( EPixelType sourcePixelType, size_t sourcePaddingX, EImageOrientation sourceOrientation ) const; /*! \brief Computes the size of the destination image buffer in byte. \param[in] sourceImage The source image, e.g. a CPylonImage, CPylonBitmapImage, or Grab Result Smart Pointer object. \return The size of the destination image when converting the given source image using current converter settings. \error Throws an exception if the destination image size for the passed input cannot be computed. The converter object is still valid after error. */ virtual size_t GetBufferSizeForConversion( const IImage& sourceImage ) const; /*! \brief Computes the size of the destination image buffer in byte. \param[in] sourceWidth The number of pixels in a row in the source image. \param[in] sourceHeight The number of rows in the source image. \param[in] sourcePixelType The pixel type of the source image. \return The size of the destination image when converting the source image using current converter settings. \pre
  • The \c sourceWidth value must be >= 0 and < _I32_MAX.
  • The \c sourceHeight value must be >= 0 and < _I32_MAX.
\error Throws an exception if the destination image size for the passed input cannot be computed. The converter object is still valid after error. */ virtual size_t GetBufferSizeForConversion( EPixelType sourcePixelType, uint32_t sourceWidth, uint32_t sourceHeight ) const; /*! \brief Creates a new image by converting an image to a different format. The IReusableImage::Reset() method of the destination image is called to set the destination format. The image is converted to the destination image according to the current converter settings. The padding area of a row in the destination image is set to zero. The OutputPaddingX setting is ignored for images that do not support user defined padding, e.g. CPylonBitmapImage. See also IReusableImage::IsAdditionalPaddingSupported(). \param[out] destinationImage The destination image, e.g. a CPylonImage or CPylonBitmapImage object. When passing a CPylonBitmapImage object the target format must be supported by the CPylonBitmapImage class. \param[in] sourceImage The source image, e.g. a CPylonImage, CPylonBitmapImage, or Grab Result Smart Pointer object. \pre
  • The source and destination images must be different images.
  • The source image must be valid.
  • The format of the source image must be supported by the converter.
  • The destination image must support the destination format.
  • The destination image must be able to provide a large enough buffer to hold the image.
\error Throws an exception if the passed parameters are not valid. The converter object is still valid after error. */ virtual void Convert( IReusableImage& destinationImage, const IImage& sourceImage ); /*! \brief Creates a new image by converting an image to a different format. The IReusableImage::Reset() method of the destination image is called to set the destination format. The image is converted to the destination image according to the current converter settings. The padding area of a row in the destination image is set to zero. The OutputPaddingX setting is ignored for images that do not support user defined padding, e.g. CPylonBitmapImage. See also IReusableImage::IsAdditionalPaddingSupported(). \param[out] destinationImage The destination image. \param[in] pSourceBuffer The pointer to the buffer of the source image. \param[in] sourceBufferSizeBytes The size of the buffer of the source image. \param[in] sourcePixelType The pixel type of the source image. \param[in] sourceWidth The number of pixels in a row in the source image. \param[in] sourceHeight The number of rows in the source image. \param[in] sourcePaddingX The number of extra data bytes at the end of each row. The default value is usually 0. \param[in] sourceOrientation The vertical orientation of the source image in the image buffer. The default value is usually ImageOrientation_TopDown. \pre
  • The pixel type must be valid.
  • The \c sourceWidth value must be >= 0 and < _I32_MAX.
  • The \c sourceHeight value must be >= 0 and < _I32_MAX.
  • The pointer to the source buffer must not be NULL.
  • The source buffer must be large enough to hold the image described by the parameters.
  • The format of the input image represented by the given parameter must be supported by the converter.
  • The destination image must support the destination format.
  • The destination image must be able to provide a large enough buffer to hold the image.
  • The source image buffer and the destination image buffer must not be identical.
\error Throws an exception if the passed parameters are not valid. The converter object is still valid after error. */ virtual void Convert( IReusableImage& destinationImage, const void* pSourceBuffer, size_t sourceBufferSizeBytes, EPixelType sourcePixelType, uint32_t sourceWidth, uint32_t sourceHeight, size_t sourcePaddingX, EImageOrientation sourceOrientation ); /*! \brief Creates a new image by converting an image to a different format. The image is converted to the destination image according to the current converter settings. The padding area of a row in the destination image is set to zero. \param[out] pDestinationBuffer The pointer to the buffer of the destination image. \param[in] destinationBufferSizeBytes The size of the buffer of the destination image. \param[in] sourceImage The source image, e.g. a CPylonImage, CPylonBitmapImage, or Grab Result Smart Pointer object. \pre
  • The format of the source image must be supported by the converter.
  • The destination image buffer must be large enough to hold the destination image.
  • The source image buffer and the destination image buffer must not be identical.
\error Throws an exception if the passed parameters are not valid. The converter object is still valid after error. */ virtual void Convert( void* pDestinationBuffer, size_t destinationBufferSizeBytes, const IImage& sourceImage ); /*! \brief Creates a new image by converting an image to a different format. The image is converted to the destination image according to the current converter settings. The padding area of a row in the destination image is set to zero. \param[out] pDestinationBuffer The pointer to the buffer of the destination image. \param[in] destinationBufferSizeBytes The size of the buffer of the destination image. \param[in] pSourceBuffer The pointer to the buffer of the source image. \param[in] sourceBufferSizeBytes The size of the buffer of the source image. \param[in] sourcePixelType The pixel type of the source image. \param[in] sourceWidth The number of pixels in a row in the source image. \param[in] sourceHeight The number of rows in the source image. \param[in] sourcePaddingX The number of extra data bytes at the end of each row. The default value is usually 0. \param[in] sourceOrientation The vertical orientation of the source image in the image buffer. The default value is usually ImageOrientation_TopDown. \pre
  • The parameters regarding the source buffer must describe a valid image.
  • The format of the input image represented by the given parameter must be supported by the converter.
  • If the destination image buffer must be large enough to hold the destination image.
  • The the source buffer can not be equal the destination buffer.
\error Throws an exception if the passed parameters are not valid. The converter object is still valid after error. */ virtual void Convert( void* pDestinationBuffer, size_t destinationBufferSizeBytes, const void* pSourceBuffer, size_t sourceBufferSizeBytes, EPixelType sourcePixelType, uint32_t sourceWidth, uint32_t sourceHeight, size_t sourcePaddingX, EImageOrientation sourceOrientation ); /*! \brief Returns true if the image format defined by the given pixel type is a supported input format. \param[in] sourcePixelType The pixel type of the source image. \error Does not throw C++ exceptions. */ static bool IsSupportedInputFormat( EPixelType sourcePixelType ); /*! \brief Returns true if the image format defined by the given pixel type is a supported output format. \param[in] destinationPixelType The pixel type of the destination image. \error Does not throw C++ exceptions. */ static bool IsSupportedOutputFormat( EPixelType destinationPixelType ); /*! \brief Provides access to the node map of the format converter. \return Reference to the node map of the format converter. \error Does not throw C++ exceptions. */ virtual GenApi::INodeMap& GetNodeMap(); private: // The converter object can not be copied. CImageFormatConverter( const CImageFormatConverter& src ); // The converter object can not be copied. CImageFormatConverter& operator=( const CImageFormatConverter& src ); // Internal use only. class CImageFormatConverterImpl; CImageFormatConverterImpl* m_pImpl; public: // This class emulates part of the behavior of a GenApi::IEnumerationT interface used for native parameter access. // This allows using the EPixelType enumeration. class IOutputPixelFormatEnum { public: virtual void operator=( EPixelType outputPixelType ) = 0; virtual void SetValue( EPixelType outputPixelType ) = 0; virtual EPixelType GetValue() const = 0; virtual EPixelType operator()() const = 0; }; /*! \brief The pixel data format of the output image. This member can be used to get and set the output pixel format using the EPixelType enumeration. It emulates the behavior of native parameter access. \pre The pixel format set must be a supported output pixel format. See IsSupportedOutputFormat(). \error Throws an exception if the set output pixel format is not supported. */ IOutputPixelFormatEnum& OutputPixelFormat; }; /** * @} */ } #ifdef _MSC_VER #pragma warning(pop) #endif #ifdef _MSC_VER # pragma pack(pop) #endif /* _MSC_VER */ #endif /* INCLUDED_IMAGEFORMATCONVERTER_H_1564142 */