4 #include <itkObjectFactory.h> 5 #include <itkImageRegionIterator.h> 6 #include <itkImageRegionConstIterator.h> 11 template<
class TImage>
14 this->SetNumberOfRequiredInputs(3);
17 template<
class TImage>
20 SetInput(0, const_cast<TImage*>(T1));
23 template<
class TImage>
26 SetInput(1, const_cast<TImage*>(T2s));
29 template<
class TImage>
32 SetInput(2, const_cast<TImage*>(M0));
35 template<
class TImage>
39 typename TImage::ConstPointer T1 = this->GetInput(0);
40 typename TImage::ConstPointer T2s = this->GetInput(1);
41 typename TImage::ConstPointer M0 = this->GetInput(2);
43 itk::ImageRegionIterator<TImage> outputIterator(this->GetOutput(), outputRegionForThread);
44 itk::ImageRegionConstIterator<TImage> inputIteratorT1(T1, outputRegionForThread);
45 itk::ImageRegionConstIterator<TImage> inputIteratorT2s(T2s, outputRegionForThread);
46 itk::ImageRegionConstIterator<TImage> inputIteratorM0(M0, outputRegionForThread);
49 while(!outputIterator.IsAtEnd())
51 if ( (inputIteratorT1.Get() <= 0) || ( inputIteratorT2s.Get() <=0))
53 outputIterator.Set(0);
57 outputIterator.Set(inputIteratorM0.Get() * fabs(1- 2 * exp(- m_TI / inputIteratorT1.Get()) + exp(- m_TR / inputIteratorT1.Get())) * exp(- m_TE / inputIteratorT2s.Get()) );
void SetInputT2s(const TImage *T2s)
void SetInputT1(const TImage *T1)
Superclass::OutputImageRegionType OutputImageRegionType
void SetInputM0(const TImage *M0)
virtual void DynamicThreadedGenerateData(const OutputImageRegionType &outputRegionForThread) ITK_OVERRIDE