plastimatch
Loading...
Searching...
No Matches
volume_conv.h
Go to the documentation of this file.
1/* -----------------------------------------------------------------------
2 See COPYRIGHT.TXT and LICENSE.TXT for copyright and license information
3 ----------------------------------------------------------------------- */
4#ifndef _volume_conv_h_
5#define _volume_conv_h_
6
7#include "plmbase_config.h"
8
9PLMBASE_API Volume::Pointer
11 const Volume::Pointer& vol_in,
12 const Volume::Pointer& ker_in
13);
14
16Volume::Pointer
18(
19 const Volume::Pointer& vol_in,
20 float *ker_i,
21 int width_i,
22 float *ker_j,
23 int width_j,
24 float *ker_k,
25 int width_k
26);
27
28#endif
#define PLMBASE_API
Definition plmbase_config.h:19
Volume::Pointer volume_conv(const Volume::Pointer &vol_in, const Volume::Pointer &ker_in)
Definition volume_conv.cxx:52
Volume::Pointer volume_convolve_separable(const Volume::Pointer &vol_in, float *ker_i, int width_i, float *ker_j, int width_j, float *ker_k, int width_k)
Definition volume_conv.cxx:238