#include <RGBtoYUV420Converter.h>
For embedded applications only some combinations of colour depths are required. This class is the base class defining the minimum interface and properties for all derived classes. The conversion method is pure virtual and must be implemented by derived classes.
Definition at line 44 of file Copy of Image/RGBtoYUV420Converter.h.
Public Member Functions | |
RGBtoYUV420Converter (void) | |
RGBtoYUV420Converter (int width, int height) | |
virtual | ~RGBtoYUV420Converter (void) |
virtual void | Convert (void *pRgb, void *pY, void *pU, void *pV)=0 |
int | GetWidth (void) |
int | GetHeight (void) |
void | SetDimensions (int width, int height) |
RGBtoYUV420Converter (void) | |
RGBtoYUV420Converter (int width, int height) | |
virtual | ~RGBtoYUV420Converter (void) |
virtual void | Convert (void *pRgb, void *pY, void *pU, void *pV)=0 |
int | GetWidth (void) |
int | GetHeight (void) |
void | SetDimensions (int width, int height) |
Protected Attributes | |
int | _width |
int | _height |