#include <YUV420toRGBConverter.h>
For embedded applications only some combinations of colour depths and inversions are required. This class is the base class defining the minimum interface and properties for all derived classes.
Definition at line 43 of file Copy of Image/YUV420toRGBConverter.h.
Public Member Functions | |
YUV420toRGBConverter (void) | |
YUV420toRGBConverter (int width, int height) | |
virtual | ~YUV420toRGBConverter (void) |
virtual void | Convert (void *pY, void *pU, void *pV, void *pRgb)=0 |
int | GetWidth (void) |
int | GetHeight (void) |
int | GetRotate (void) |
void | SetDimensions (int width, int height) |
void | SetRotate (int rotate) |
YUV420toRGBConverter (void) | |
YUV420toRGBConverter (int width, int height) | |
virtual | ~YUV420toRGBConverter (void) |
virtual void | Convert (void *pY, void *pU, void *pV, void *pRgb)=0 |
int | GetWidth (void) |
int | GetHeight (void) |
int | GetRotate (void) |
void | SetDimensions (int width, int height) |
void | SetRotate (int rotate) |
Protected Attributes | |
int | _width |
int | _height |
int | _rotate |