Skip to content

Commit 0788eb6

Browse files
committed
BUG: Spelling: DigitalisedInputImageg
1 parent 895a05e commit 0788eb6

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

include/itkCoocurrenceTextureFeaturesImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class ITK_TEMPLATE_EXPORT CoocurrenceTextureFeaturesImageFilter:public ImageToIm
231231
virtual void GenerateOutputInformation() ITK_OVERRIDE;
232232

233233
private:
234-
typename DigitalisedImageType::Pointer m_DigitalisedInputImageg;
234+
typename DigitalisedImageType::Pointer m_DigitalizedInputImage;
235235

236236
NeighborhoodRadiusType m_NeighborhoodRadius;
237237
OffsetVectorPointer m_Offsets;

include/itkCoocurrenceTextureFeaturesImageFilter.hxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ CoocurrenceTextureFeaturesImageFilter<TInputImage, TOutputImage>
108108
functorF->SetNumberOfThreads(this->GetNumberOfThreads());
109109

110110
functorF->Update();
111-
m_DigitalisedInputImageg = functorF->GetOutput();
111+
m_DigitalizedInputImage = functorF->GetOutput();
112112
}
113113

114114
template<typename TInputImage, typename TOutputImage>
@@ -117,7 +117,7 @@ CoocurrenceTextureFeaturesImageFilter<TInputImage, TOutputImage>
117117
::AfterThreadedGenerateData()
118118
{
119119
// Free internal image
120-
this->m_DigitalisedInputImageg = ITK_NULLPTR;
120+
this->m_DigitalizedInputImage = ITK_NULLPTR;
121121
}
122122

123123

@@ -140,7 +140,7 @@ CoocurrenceTextureFeaturesImageFilter<TInputImage, TOutputImage>
140140
// Separation of the non-boundary region that will be processed in a different way
141141
NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< TInputImage > boundaryFacesCalculator;
142142
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< InputImageType >::FaceListType
143-
faceList = boundaryFacesCalculator( this->m_DigitalisedInputImageg, outputRegionForThread, m_NeighborhoodRadius );
143+
faceList = boundaryFacesCalculator( this->m_DigitalizedInputImage, outputRegionForThread, m_NeighborhoodRadius );
144144
typename NeighborhoodAlgorithm::ImageBoundaryFacesCalculator< InputImageType >::FaceListType::iterator fit = faceList.begin();
145145

146146
// Declaration of the variables useful to iterate over the all image region
@@ -170,7 +170,7 @@ CoocurrenceTextureFeaturesImageFilter<TInputImage, TOutputImage>
170170
/// ***** Non-boundary Region *****
171171
for (; fit != faceList.end(); ++fit )
172172
{
173-
NeighborhoodIteratorType inputNIt(m_NeighborhoodRadius, this->m_DigitalisedInputImageg, *fit );
173+
NeighborhoodIteratorType inputNIt(m_NeighborhoodRadius, this->m_DigitalizedInputImage, *fit );
174174
typedef itk::ImageRegionIterator< OutputImageType> IteratorType;
175175
IteratorType outputIt( outputPtr, *fit );
176176

@@ -456,7 +456,7 @@ CoocurrenceTextureFeaturesImageFilter<TInputImage, TOutputImage>
456456

457457
Superclass::PrintSelf( os, indent );
458458

459-
itkPrintSelfObjectMacro( DigitalisedInputImageg );
459+
itkPrintSelfObjectMacro( DigitalizedInputImage );
460460

461461
os << indent << "NeighborhoodRadius"
462462
<< static_cast< typename NumericTraits<

include/itkRunLengthTextureFeaturesImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ class ITK_TEMPLATE_EXPORT RunLengthTextureFeaturesImageFilter:public ImageToImag
243243
virtual void UpdateOutputInformation() ITK_OVERRIDE;
244244

245245
private:
246-
typename InputImageType::Pointer m_DigitalisedInputImageg;
246+
typename InputImageType::Pointer m_DigitalizedInputImage;
247247
NeighborhoodRadiusType m_NeighborhoodRadius;
248248
OffsetVectorPointer m_Offsets;
249249
unsigned int m_NumberOfBinsPerAxis;

include/itkRunLengthTextureFeaturesImageFilter.hxx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)