#include <cassert>#include <iostream>#include "colour_sensitivity.h"Include dependency graph for colourspace.h:

Go to the source code of this file.
Namespaces | |
| namespace | mimas |
Functions | |
| void | mimas::rgb_to_rgba (const char *in, int width, int height, char *out) |
| Colour conversion from RGB to RGBA. | |
| void | mimas::yv12_to_rgba (const char *in, int width, int height, char *out) |
| Colour conversion from YV12 to RGBA. | |
| void | mimas::yuv420p_to_rgba (const char *in, int width, int height, char *out) |
| Colour conversion from YUV420p to RGBA. | |
| void | mimas::yuv420p_to_grey (const char *in, int width, int height, char *out) |
| Colour conversion from YUV420p to grey. | |
| void | mimas::yv12_to_grey (const char *in, int width, int height, char *out) |
| Colour conversion from YV12 to Grey. | |
| void | mimas::rgba_to_yv12 (const char *in, int width, int height, char *out) |
| Colour conversion from RGBA to YV12. | |
| void | mimas::uyvy_to_rgba (const char *in, int width, int height, char *out) |
| Colour conversion from UYVY to RGBA. | |
| void | mimas::yuy2_to_rgba (const char *in, int width, int height, char *out) |
| Colour conversion from YUY2 to RGBA. | |
| void | mimas::yuy2_to_grey (const char *in, int width, int height, char *out) |
| Colour conversion from YUY2 to grey. | |