#include <camellia.h>
Public Member Functions | |
CamLinearFilterKernel () | |
Default constructor. | |
bool | set (int x, int y, int val) |
Set an element of the linear filter kernel. | |
int | get (int x, int y) |
Get an element from the linear filter kernel. | |
Data Fields | |
int | kernel [CAM_LINEAR_FILTER_KERNEL_MAX_SIZE][CAM_LINEAR_FILTER_KERNEL_MAX_SIZE] |
The NxN coefficients matrix (aka the kernel). | |
int | coeff1 |
Multiplicative coefficient. | |
int | coeff2 |
Final value is (result*coeff1)>>coeff2. This is to simulate division. |