#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxConvKernelSeparated (HxImageRep img, HxImageRep kernel, HxImageRep::ResultPrecision resPrec) |
Convolution with separable kernel. More... |
|
Convolution with separable kernel. The function performs a convolution on the input image via a generalized convolution operation (see Images). The same kernel is applied in each dimension. Implementation specifics : The image functor instantiator for 2D images : HxInstMulAddAss2dK1d, and for 3D images : HxInstMulAddAss3dK1d.
00015 { 00016 return img.genConvSeparated(kernel, "mul", "addAssign", resPrec); 00017 } |