mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Implementation of image processing utilities. More...
Implementation of image processing utilities.
Definition in file imageUtils.cpp.
Go to the source code of this file.
Namespaces | |
mx | |
The mxlib c++ namespace. | |
Functions | |
void * | mx::improc::imcpy (void *dest, void *src, size_t width, size_t height, size_t szof) |
Copy one image to another, with no transformation. More... | |
void * | mx::improc::imcpy_flipUD (void *dest, void *src, size_t width, size_t height, size_t szof) |
Copy one image to another, flipping up-down. More... | |
void * | mx::improc::imcpy_flipLR (void *dest, void *src, size_t width, size_t height, size_t szof) |
Copy one image to another, flipping left-right. More... | |
void * | mx::improc::imcpy_flipUDLR (void *dest, void *src, size_t width, size_t height, size_t szof) |
Copy one image to another, flipping up-down and left-right. More... | |