@@ -80,12 +80,12 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
8080{
8181 typename TInputImage::Pointer maskPointer = TInputImage::New ();
8282 maskPointer = const_cast <TInputImage *>(this ->GetMaskImage ());
83- this ->m_DigitalisedInputImageg = InputImageType::New ();
84- this ->m_DigitalisedInputImageg ->SetRegions (this ->GetInput ()->GetRequestedRegion ());
85- this ->m_DigitalisedInputImageg ->CopyInformation (this ->GetInput ());
86- this ->m_DigitalisedInputImageg ->Allocate ();
83+ this ->m_DigitalizedInputImage = InputImageType::New ();
84+ this ->m_DigitalizedInputImage ->SetRegions (this ->GetInput ()->GetRequestedRegion ());
85+ this ->m_DigitalizedInputImage ->CopyInformation (this ->GetInput ());
86+ this ->m_DigitalizedInputImage ->Allocate ();
8787 typedef itk::ImageRegionIterator< InputImageType> IteratorType;
88- IteratorType digitIt ( this ->m_DigitalisedInputImageg , this ->m_DigitalisedInputImageg ->GetLargestPossibleRegion () );
88+ IteratorType digitIt ( this ->m_DigitalizedInputImage , this ->m_DigitalizedInputImage ->GetLargestPossibleRegion () );
8989 typedef itk::ImageRegionConstIterator< InputImageType> ConstIteratorType;
9090 ConstIteratorType inputIt ( this ->GetInput (), this ->GetInput ()->GetLargestPossibleRegion () );
9191 unsigned int binNumber;
@@ -153,14 +153,14 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
153153 }
154154 boolRegion.SetIndex (boolStart);
155155 boolRegion.SetSize (boolSize);
156- alreadyVisitedImage->CopyInformation ( this ->m_DigitalisedInputImageg );
156+ alreadyVisitedImage->CopyInformation ( this ->m_DigitalizedInputImage );
157157 alreadyVisitedImage->SetRegions ( boolRegion );
158158 alreadyVisitedImage->Allocate ();
159159
160160 // Separation of the non-boundary region that will be processed in a different way
161161 NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< TInputImage > boundaryFacesCalculator;
162162 typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< InputImageType >::FaceListType
163- faceList = boundaryFacesCalculator ( this ->m_DigitalisedInputImageg , outputRegionForThread, m_NeighborhoodRadius );
163+ faceList = boundaryFacesCalculator ( this ->m_DigitalizedInputImage , outputRegionForThread, m_NeighborhoodRadius );
164164 typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< InputImageType >::FaceListType::iterator fit = faceList.begin ();
165165
166166 // Declaration of the variables useful to iterate over the all image region
@@ -190,7 +190,7 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
190190 // / ***** Non-boundary Region *****
191191 for ( ; fit != faceList.end (); ++fit )
192192 {
193- NeighborhoodIteratorType inputNIt (m_NeighborhoodRadius, this ->m_DigitalisedInputImageg , *fit );
193+ NeighborhoodIteratorType inputNIt (m_NeighborhoodRadius, this ->m_DigitalizedInputImage , *fit );
194194 typedef itk::ImageRegionIterator< OutputImageType> IteratorType;
195195 IteratorType outputIt ( outputPtr, *fit );
196196
@@ -510,7 +510,7 @@ RunLengthTextureFeaturesImageFilter<TInputImage, TOutputImage>
510510{
511511 Superclass::PrintSelf ( os, indent );
512512
513- itkPrintSelfObjectMacro ( DigitalisedInputImageg );
513+ itkPrintSelfObjectMacro ( DigitalizedInputImage );
514514
515515 os << indent << " NeighborhoodRadius: "
516516 << static_cast < typename NumericTraits<
0 commit comments