#include <imageanalysis/ImageAnalysis/ImageFFTer.h>
#include <imageanalysis/ImageAnalysis/ImageFFT.h>
template<class T> ImageFFTer<T>::ImageFFTer(
const casacore::Record *const region,
const casacore::String& maskInp, const casacore::Vector<casacore::uInt>& axes
image, "", region, "", "", "",
_axes(axes), _real(), _imag(), _amp(),
template<class T> void ImageFFTer<T>::fft() const {
*this->_getLog() << casacore::LogOrigin(getClass(), __FUNCTION__);
_real.empty() && _imag.empty() && _amp.empty()
&& _phase.empty() && _complex.empty(),
"No output image names have been specified"
auto subImage = SubImageFactory<T>::createSubImageRO(
*this->_getImage(), *this->_getRegion(), this->_getMask(),
this->_getLog().get(), casacore::AxesSpecifier(), this->_getStretch()
*this->_getLog() << casacore::LogIO::NORMAL
<< "FFT the direction coordinate" << casacore::LogIO::POST;
// Set vector of bools specifying axes
casacore::Vector<casacore::Bool> which(subImage->ndim(), false);
for(casacore::uInt i: _axes) {
*this->_getLog() << casacore::LogIO::NORMAL << "FFT zero-based axes "
<< _axes << casacore::LogIO::POST;
fft.fft(*subImage, which);
// casacore::String maskName("");
_createOutputImages(*subImage, fft);
void ImageFFTer<T>::_createOutputImages(
const casacore::SubImage<T>& subImage, const ImageFFT<T>& fft
! (_real.empty() && _imag.empty() && _amp.empty() && _phase.empty())