#include <camellia.h>
Public Member Functions | |
CamSepFilterKernel () | |
Default constructor. | |
bool | set_x (int y, int val) |
Set an element of the linear separable filter kernel. | |
int | get_x (int y) |
Get an element from the linear separable filter kernel. | |
Data Fields | |
int | x [CAM_LINEAR_FILTER_KERNEL_MAX_SIZE] |
The horizontal array of coefficients. | |
int | y [CAM_LINEAR_FILTER_KERNEL_MAX_SIZE] |
The vertical array of coefficients. | |
int | coeff1 |
Multiplicative coefficient. | |
int | coeff2 |
Final value is (result*coeff1)>>coeff2. This is to simulate division. |