Go to the documentation of this file.
18 #ifndef sitkJoinSeriesImageFilter_h
19 #define sitkJoinSeriesImageFilter_h
71 SITK_RETURN_SELF_TYPE_HEADER
SetOrigin (
double Origin ) { this->m_Origin = Origin;
return *
this; }
76 double GetOrigin()
const {
return this->m_Origin; }\
81 SITK_RETURN_SELF_TYPE_HEADER
SetSpacing (
double Spacing ) { this->m_Spacing = Spacing;
return *
this; }
89 std::string
GetName()
const {
return std::string (
"JoinSeriesImageFilter"); }
92 std::string ToString()
const;
95 Image Execute (
const std::vector<Image> &images);
110 template <
class TImageType>
Image ExecuteInternal (
const std::vector<Image> &images );
119 double m_Origin{0.0};
121 double m_Spacing{1.0};
The Image class for SimpleITK.
Join N-D images into an (N+1)-D image.
typelist::Append< typelist::Append< BasicPixelIDTypeList, ComplexPixelIDTypeList >::Type, VectorPixelIDTypeList >::Type NonLabelPixelIDTypeList
Self & SetSpacing(double Spacing)
Image(Self::*)(const std::vector< Image > &) MemberFunctionType
std::string GetName() const
#define SITKBasicFilters_EXPORT
std::unique_ptr< detail::MemberFunctionFactory< MemberFunctionType > > m_MemberFactory
The base interface for SimpleITK filters that take one input image.
Image JoinSeries(const std::vector< Image > &images, double origin=0.0, double spacing=1.0)
Join N-D images into an (N+1)-D image.
NonLabelPixelIDTypeList PixelIDTypeList
Self & SetOrigin(double Origin)
double GetSpacing() const