8#ifndef imagingArray_hpp
9#define imagingArray_hpp
11#pragma GCC system_header
14#include "../math/templateBLAS.hpp"
15#include "../math/fft/fft.hpp"
22template <
typename Scalar>
25 Scalar *alloc(
size_t sz )
27 return (Scalar *)::fftw_malloc( sz *
sizeof( Scalar ) );
30 void free( Scalar *ptr )
53 template <
typename imageT>
54 static yes &test(
typename imageT::imagingArrayT * );
57 static no &test( ... );
61 static const bool value =
sizeof( test<T>( 0 ) ) ==
sizeof( yes );
64template <typename imageT, typename typeT, bool isScalar = is_imagingArray<typeT>::value>
65struct imagingArrayInplaceProduct
67 imagingArrayInplaceProduct()
70 "imagingArrayInplaceProduct template parameter 1 must be an imagingArray type" );
73 void operator()( imageT &im, typeT &alpha )
79template <
typename imageT,
typename typeT>
80struct imagingArrayInplaceProduct<imageT, typeT, true>
82 imagingArrayInplaceProduct()
84 static_assert( is_imagingArray<imageT>::value,
85 "imagingArrayInplaceProduct template parameter 1 must be an imagingArray type" );
88 void operator()( imageT &im, typeT &alpha )
90 typedef typename imageT::Scalar scalarT;
93 Eigen::Map<Eigen::Array<scalarT, -1, -1>> eigY( alpha.data(), alpha.cols(), alpha.rows() );
94 Eigen::Map<Eigen::Array<scalarT, -1, -1>> eigX( im.data(), im.cols(), im.rows() );
100template <typename imageT, typename typeT, bool isScalar = is_imagingArray<typeT>::value>
101struct imagingArrayInplaceDivision
103 imagingArrayInplaceDivision()
105 static_assert( is_imagingArray<imageT>::value,
106 "imagingArrayInplaceDivision template parameter 1 must be an imagingArray type" );
109 void operator()( imageT im, typeT alpha )
115template <
typename imageT,
typename typeT>
116struct imagingArrayInplaceDivision<imageT, typeT, true>
118 imagingArrayInplaceDivision()
120 static_assert( is_imagingArray<imageT>::value,
121 "imagingArrayInplaceDivision template parameter 1 must be an imagingArray type" );
124 void operator()( imageT im, typeT alpha )
126 typedef typename imageT::Scalar scalarT;
131template <typename imageT, typename typeT, bool isScalar = is_imagingArray<typeT>::value>
132struct imagingArrayInplaceAdd
134 imagingArrayInplaceAdd()
136 static_assert( is_imagingArray<imageT>::value,
137 "imagingArrayInplaceAdd template parameter 1 must be an imagingArray type" );
140 void operator()( imageT &im, typeT &alpha )
142 typedef typename imageT::Scalar scalarT;
143 Eigen::Map<Eigen::Array<scalarT, -1, -1>> eigX( im.data(), im.cols(), im.rows() );
148template <
typename imageT,
typename typeT>
149struct imagingArrayInplaceAdd<imageT, typeT, true>
151 imagingArrayInplaceAdd()
153 static_assert( is_imagingArray<imageT>::value,
154 "imagingArrayInplaceAdd template parameter 1 must be an imagingArray type" );
157 void operator()( imageT &im, typeT &alpha )
159 typedef typename imageT::Scalar scalarT;
162 Eigen::Map<Eigen::Array<scalarT, -1, -1>> eigY( alpha.data(), alpha.cols(), alpha.rows() );
163 Eigen::Map<Eigen::Array<scalarT, -1, -1>> eigX( im.data(), im.cols(), im.rows() );
169template <
typename _Scalar,
class _allocatorT,
int cudaGPU>
172template <
typename _Scalar,
class _allocatorT>
173class imagingArray<_Scalar, _allocatorT, 0>
176 typedef bool imagingArrayT;
177 typedef _Scalar Scalar;
178 typedef _allocatorT allocatorT;
181 allocatorT allocator;
199 imagingArray(
int x,
int y )
209 template <
typename eigenT>
210 explicit imagingArray( eigenT &im )
223 void resize(
int szx,
int szy )
225 if( szx == _cols && szy == _rows && _owner )
233 _data = allocator.alloc( _cols * _rows );
239 if( _data && _owner )
241 allocator.free( _data );
268 Scalar operator()(
int x,
int y )
const
270 return _data[x + y * _cols];
273 Scalar &operator()(
int x,
int y )
275 return _data[x + y * _cols];
278 template <
typename argT>
281 int N = _cols * _rows;
283 Scalar dval = (Scalar)val;
284 for(
int i = 0; i < N; ++i )
293 imagingArray &operator=(
const imagingArray &arr )
295 resize( arr.rows(), arr.cols() );
297 for(
int i = 0; i < _rows; ++i )
299 for(
int j = 0; j < _cols; ++j )
301 operator()( i, j ) = arr( i, j );
309 template <
typename typeT>
310 imagingArray &operator*=( typeT &alpha )
312 imagingArrayInplaceProduct<imagingArray, typeT> prod;
313 prod( *
this, alpha );
318 template <
typename typeT>
319 imagingArray &operator/=( typeT alpha )
321 imagingArrayInplaceDivision<imagingArray, typeT> div;
327 template <
typename typeT>
328 imagingArray &operator+=( typeT &alpha )
330 imagingArrayInplaceAdd<imagingArray, typeT> prod;
331 prod( *
this, alpha );
337 int N = _cols * _rows;
340 for(
int i = 0; i < N; ++i )
346 Eigen::Map<Eigen::Array<Scalar, -1, -1>>
eigenMap()
348 return Eigen::Map<Eigen::Array<Scalar, -1, -1>>( _data, _rows, _cols );
352template <
typename scalarT>
353using imagingArrayT = imagingArray<scalarT, fftwAllocator<scalarT>, 0>;
Eigen::Map< Eigen::Array< scalarT, -1, -1 > > eigenMap
Definition of the eigenMap type, which is an alias for Eigen::Map<Array>.
void fftw_free(realT *p)
Call to fftw_free.
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
Test whether a type is an imagingArray by testing whether it has a typedef of "is_imagingArray".