summaryrefslogtreecommitdiffstats
path: root/include/astra/Filters.h
blob: b9af9c0b74fd6cf34cac44775a354fa2dca67f44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*
-----------------------------------------------------------------------
Copyright: 2010-2021, imec Vision Lab, University of Antwerp
           2014-2021, CWI, Amsterdam

Contact: astra@astra-toolbox.com
Website: http://www.astra-toolbox.com/

This file is part of the ASTRA Toolbox.


The ASTRA Toolbox is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

The ASTRA Toolbox is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with the ASTRA Toolbox. If not, see <http://www.gnu.org/licenses/>.

-----------------------------------------------------------------------
*/

#ifndef _INC_ASTRA_FILTERS_H
#define _INC_ASTRA_FILTERS_H

#include <string>

namespace astra {

struct Config;
class CAlgorithm;
class CProjectionGeometry2D;

enum E_FBPFILTER
{
	FILTER_ERROR,			//< not a valid filter
	FILTER_NONE,			//< no filter (regular BP)
	FILTER_RAMLAK,			//< default FBP filter
	FILTER_SHEPPLOGAN,		//< Shepp-Logan
	FILTER_COSINE,			//< Cosine
	FILTER_HAMMING,			//< Hamming filter
	FILTER_HANN,			//< Hann filter
	FILTER_TUKEY,			//< Tukey filter
	FILTER_LANCZOS,			//< Lanczos filter
	FILTER_TRIANGULAR,		//< Triangular filter
	FILTER_GAUSSIAN,		//< Gaussian filter
	FILTER_BARTLETTHANN,	//< Bartlett-Hann filter
	FILTER_BLACKMAN,		//< Blackman filter
	FILTER_NUTTALL,			//< Nuttall filter, continuous first derivative
	FILTER_BLACKMANHARRIS,	//< Blackman-Harris filter
	FILTER_BLACKMANNUTTALL,	//< Blackman-Nuttall filter
	FILTER_FLATTOP,			//< Flat top filter
	FILTER_KAISER,			//< Kaiser filter
	FILTER_PARZEN,			//< Parzen filter
	FILTER_PROJECTION,		//< all projection directions share one filter
	FILTER_SINOGRAM,		//< every projection direction has its own filter
	FILTER_RPROJECTION,		//< projection filter in real space (as opposed to fourier space)
	FILTER_RSINOGRAM,		//< sinogram filter in real space

};

struct SFilterConfig {
	E_FBPFILTER m_eType;
	float m_fD;
	float m_fParameter;

	float *m_pfCustomFilter;
	int m_iCustomFilterWidth;
	int m_iCustomFilterHeight;

	SFilterConfig() : m_eType(FILTER_ERROR), m_fD(1.0f), m_fParameter(-1.0f),
	                  m_pfCustomFilter(0), m_iCustomFilterWidth(0),
	                  m_iCustomFilterHeight(0) { };
};

// Generate filter of given size and parameters. Returns newly allocated array.
float *genFilter(const SFilterConfig &_cfg,
                 int _iFFTRealDetectorCount,
                 int _iFFTFourierDetectorCount);

// Convert string to filter type. Returns FILTER_ERROR if unrecognized.
E_FBPFILTER convertStringToFilter(const std::string &_filterType);

SFilterConfig getFilterConfigForAlgorithm(const Config& _cfg, CAlgorithm *_alg);

bool checkCustomFilterSize(const SFilterConfig &_cfg, const CProjectionGeometry2D &_geom);


int calcNextPowerOfTwo(int _iValue);
int calcFFTFourierSize(int _iFFTRealSize);


}

#endif