#include <cstdlib>
#include "images.h"
Go to the source code of this file.
Functions | |
void | RGB_to_YCbCr (const byte *img, size_t width, size_t height, byte *Y, byte *Cb, byte *Cr) |
void | shrink_frame (size_t width, size_t height, unsigned int factor, const byte *inY, const byte *inCb, const byte *inCr, byte *outY, byte *outCb, byte *outCr) |
|
convert the given image from RGB to YCbCr (each component on its own array) Definition at line 27 of file images.cc. Referenced by read_usarsim_images(). |
|
shrink an image frame by the given factor Definition at line 47 of file images.cc. Referenced by read_usarsim_images(). |