Add helper function for kernel normalization

Signed-off-by: Yuxuan Shui <yshuiv7@gmail.com>
This commit is contained in:
Yuxuan Shui
2019-02-20 01:46:54 +00:00
parent a5e3837f6d
commit ed9c7064de
2 changed files with 27 additions and 0 deletions

View File

@ -25,6 +25,13 @@ conv *gaussian_kernel(double r);
/// shadow_sum[x*d+y] is the sum of the kernel from (0, 0) to (x, y), inclusive
void sum_kernel_preprocess(conv *map);
/**
* Normalize a convolution kernel.
*
* @param[in,out] kern the kernel
*/
void normalize_conv_kern(conv *kern);
static inline void free_conv(conv *k) {
free(k->rsum);
free(k);