|
Defines |
#define | BYTE unsigned char |
Functions |
void | racMean (int width, int height, int range, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Mean filter.
|
void | racMedian (int width, int height, int range, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Median filter.
|
void | racConservative (int width, int height, int range, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Conservative filter.
|
void | racGaussian (int width, int height, int nPasses, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Gaussian filter with 1d matrix.
|
void | racLoG (int width, int height, int threshold, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Laplacian of Gaussian filter (LoG).
|
void | racSobel (int width, int height, int threshold, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Sobel filter.
|
void | racThreshold (int width, int height, int k, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Threshold filter.
|
void | racThreshold (int width, int height, int k, int *imgSrc, BYTE *imgDest, int numCh=3) |
void | racNorm (int width, int height, BYTE *imgSrc, BYTE *imgDest, int numCh=3, BYTE min=0, BYTE max=255) |
| Normalize an image.
|
void | racNorm (int width, int height, int *imgSrc, BYTE *imgDest, int numCh=3, BYTE min=0, BYTE max=255) |
void | racNorm (int width, int height, float *imgSrc, BYTE *imgDest, int numCh=3, BYTE min=0, BYTE max=255) |
void | racInvert (int width, int height, BYTE *imgSrc, BYTE *imgDest, int numCh=3) |
| Invert an image.
|
void | racDifference (int width, int height, BYTE *imgSrc1, BYTE *imgSrc2, BYTE *imgDest, int numCh=3) |
| Difference between 2 images (imgSrc1 - imgSrc2).
|