Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Modules/Filtering/FFT/include/itkFFTImageFilterFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ class FFTImageFilterFactory : public itk::ObjectFactoryBase
{
OverrideFFTImageFilterType<typename FFTImageFilterTraits<TFFTImageFilter>::template InputPixelType<float>,
typename FFTImageFilterTraits<TFFTImageFilter>::template OutputPixelType<float>>(
std::integer_sequence<unsigned int, 4, 3, 2, 1>{});
typename FFTImageFilterTraits<TFFTImageFilter>::FilterDimensions{});

OverrideFFTImageFilterType<typename FFTImageFilterTraits<TFFTImageFilter>::template InputPixelType<double>,
typename FFTImageFilterTraits<TFFTImageFilter>::template OutputPixelType<double>>(
std::integer_sequence<unsigned int, 4, 3, 2, 1>{});
typename FFTImageFilterTraits<TFFTImageFilter>::FilterDimensions{});
}
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ struct FFTImageFilterTraits<FFTWComplexToComplex1DFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ struct FFTImageFilterTraits<FFTWComplexToComplexFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ struct FFTImageFilterTraits<FFTWForward1DFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ struct FFTImageFilterTraits<FFTWForwardFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ struct FFTImageFilterTraits<FFTWHalfHermitianToRealInverseFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ struct FFTImageFilterTraits<FFTWInverse1DFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,7 @@ struct FFTImageFilterTraits<FFTWInverseFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ struct FFTImageFilterTraits<FFTWRealToHalfHermitianForwardFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ struct FFTImageFilterTraits<VnlComplexToComplex1DFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // end namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ struct FFTImageFilterTraits<VnlComplexToComplexFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // end namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ struct FFTImageFilterTraits<VnlForward1DFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // end namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ struct FFTImageFilterTraits<VnlForwardFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};
} // namespace itk

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ struct FFTImageFilterTraits<VnlHalfHermitianToRealInverseFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ struct FFTImageFilterTraits<VnlInverse1DFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // end namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ struct FFTImageFilterTraits<VnlInverseFFTImageFilter>
using InputPixelType = std::complex<TUnderlying>;
template <typename TUnderlying>
using OutputPixelType = TUnderlying;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ struct FFTImageFilterTraits<VnlRealToHalfHermitianForwardFFTImageFilter>
using InputPixelType = TUnderlying;
template <typename TUnderlying>
using OutputPixelType = std::complex<TUnderlying>;
using FilterDimensions = std::integer_sequence<unsigned int, 4, 3, 2, 1>;
};

} // namespace itk
Expand Down