- Description:
- Computes a gaussian filter over the 3x3 neighborhood of each input pixel.
- Method:
- This filter uses the following convolution matrix:
| 1 2 1 |
Kbox = | 2 4 2 | * 1/16
| 1 2 1 |
- Parameters
-
[in] | src[] | Pointer to array containing input image (UQ8.0) |
[in] | src_addr[] | Pointer to structure containing dimensional information of src |
[out] | dst[] | Pointer to array containing output image (UQ8.0) |
[in] | dst_addr[] | Pointer to structure containing dimensional information of dst |
- Assumptions:
- I/O buffer pointers are assumed to be not aliased.
- Output height should be == (Input height - 2)
- Output width should be == (Input width - 2) OR (Input width)
- Performance Considerations:
- For best performance, the following parameter settings are recommended:
- Set widths equal each other and equal to strides (allows processing over whole image in single loop)