#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxConvolution (HxImageRep img, HxImageRep kernel, HxImageRep::ResultPrecision resPrec) |
Convolution. More... |
|
Convolution. The function performs a convolution on the input image via a generalized convolution operation (see Images). Implementation specifics : The image functor instantiator for 2D images: HxInstMulAddAss2d, and for 3D images : HxInstMulAddAss3d.
00015 { 00016 return img.generalizedConvolution( 00017 kernel, "mul", "addAssign", resPrec); 00018 } |