#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxConvolution1d (HxImageRep img, HxImageRep kernel, int dimension, HxImageRep::ResultPrecision resPrec) |
Convolution in one dimension. More... |
|
Convolution in one dimension. The function performs a convolution on the input image in the given dimension via a generalized convolution operation (see Images). Implementation specifics : The image functor instantiator for 2D images : HxInstMulAddAss2dK1d, and for 3D images : HxInstMulAddAss3dK1d.
00016 { 00017 return img.generalizedConvolutionK1d( 00018 dimension, kernel, "mul", "addAssign", resPrec); 00019 } |