Skip to content

Commit ed7ad92

Browse files
dave3ddzenanz
authored andcommitted
DOC: Spellcheck Filtering HXX and Video headers
Previously I fixed the spelling bugs in the ".h" files in Modules/Filtering. Now I've gone through the ".hxx" header files. Also I this PR fixes spelling bugs in the ".h" and ".hxx" files in Modules/Video.
1 parent cda75fa commit ed7ad92

File tree

51 files changed

+66
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+66
-66
lines changed

Modules/Filtering/AnisotropicSmoothing/include/itkVectorCurvatureNDAnisotropicDiffusionFunction.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ VectorCurvatureNDAnisotropicDiffusionFunction<TImage>::VectorCurvatureNDAnisotro
6666
}
6767

6868
// Allocate the derivative operator.
69-
m_DerivativeOperator.SetDirection(0); // Not relelevant, we'll apply in a slice-based
69+
m_DerivativeOperator.SetDirection(0); // Not relevant, we'll apply in a slice-based
7070
// fashion
7171
m_DerivativeOperator.SetOrder(1);
7272
m_DerivativeOperator.CreateDirectional();

Modules/Filtering/AnisotropicSmoothing/include/itkVectorGradientNDAnisotropicDiffusionFunction.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ VectorGradientNDAnisotropicDiffusionFunction<TImage>::VectorGradientNDAnisotropi
6666
}
6767

6868
// Allocate the derivative operator.
69-
m_DerivativeOperator.SetDirection(0); // Not relelevant, we'll apply in a slice-based
69+
m_DerivativeOperator.SetDirection(0); // Not relevant, we'll apply in a slice-based
7070
// fashion
7171
m_DerivativeOperator.SetOrder(1);
7272
m_DerivativeOperator.CreateDirectional();

Modules/Filtering/BiasCorrection/include/itkMRIBiasFieldCorrectionFilter.hxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,7 @@ MRIBiasFieldCorrectionFilter<TInputImage, TOutputImage, TMaskImage>::GenerateDat
671671

672672
while (iter != m_Slabs.end())
673673
{
674-
// Correct inter-slice intensity inhomogeniety
674+
// Correct inter-slice intensity inhomogeneity
675675
// using 0th degree Legendre polynomial
676676

677677
if (m_UsingInterSliceIntensityCorrection)
@@ -933,7 +933,7 @@ MRIBiasFieldCorrectionFilter<TInputImage, TOutputImage, TMaskImage>::AdjustSlabR
933933
}
934934
else
935935
{
936-
// No ovelapping, so remove the slab from the vector
936+
// No overlapping, so remove the slab from the vector
937937
slabs.erase(iter);
938938
}
939939
++iter;

Modules/Filtering/BinaryMathematicalMorphology/include/itkBinaryDilateImageFilter.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ BinaryDilateImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
118118
// Allocation.
119119
// Pay attention to the fact that here, the output is still not
120120
// allocated (so no extra memory needed for tmp image, if you
121-
// consider that you reserve som memory space for output)
121+
// consider that you reserve some memory space for output)
122122
tmpImage->Allocate();
123123

124124
// First Stage
@@ -335,7 +335,7 @@ BinaryDilateImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
335335
} // if( nit.GetPixel( i ) == onTag )
336336
} // for (i = 0; i < neighborhoodSize; ++i)
337337
} // while ( !propagQueue.empty() )
338-
} // if( bIsOnCountour )
338+
} // if( bIsOnContour )
339339
else
340340
{
341341
tmpRegIndexIt.Set(innerTag);
@@ -392,7 +392,7 @@ BinaryDilateImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
392392
ImageRegionIteratorWithIndex<OutputImageType> ouRegIndexIt(output, outputRegion);
393393

394394
// InputRegionForThread is the output region for thread padded by
395-
// kerne lradius We must traverse this padded region because some
395+
// kernel radius We must traverse this padded region because some
396396
// border pixel in the added band ( the padded band is the region
397397
// added after padding ) may be responsible to the painting of some
398398
// pixel in the non padded region. This happens typically when a

Modules/Filtering/BinaryMathematicalMorphology/include/itkBinaryErodeImageFilter.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ BinaryErodeImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
108108
// Allocation.
109109
// Pay attention to the fact that here, the output is still not
110110
// allocated (so no extra memory needed for tmp image, if you
111-
// consider that you reserve som memory space for output)
111+
// consider that you reserve some memory space for output)
112112
tmpImage->Allocate();
113113

114114
// First Stage
@@ -327,7 +327,7 @@ BinaryErodeImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
327327
} // if( nit.GetPixel( i ) == onTag )
328328
} // for (i = 0; i < neighborhoodSize; ++i)
329329
} // while ( !propagQueue.empty() )
330-
} // if( bIsOnCountour )
330+
} // if( bIsOnContour )
331331
else
332332
{
333333
tmpRegIndexIt.Set(innerTag);
@@ -386,7 +386,7 @@ BinaryErodeImageFilter<TInputImage, TOutputImage, TKernel>::GenerateData()
386386
ImageRegionIteratorWithIndex<OutputImageType> ouRegIndexIt(output, outputRegion);
387387

388388
// InputRegionForThread is the output region for thread padded by
389-
// kerne lradius We must traverse this padded region because some
389+
// kernel radius We must traverse this padded region because some
390390
// border pixel in the added band ( the padded band is the region
391391
// added after padding ) may be responsible to the painting of some
392392
// pixel in the non padded region. This happens typically when a

Modules/Filtering/BinaryMathematicalMorphology/include/itkBinaryThinningImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ BinaryThinningImageFilter<TInputImage, TOutputImage>::ComputeThinImage()
185185
// sequence.
186186
// TestB is violated when it is applied to points on a
187187
// stroke 1 pixel thick. Hence this test prevents
188-
// disconnetion of segments of a skeleton during the
188+
// disconnection of segments of a skeleton during the
189189
// thinning operation.
190190
// First find the total number of transitions, and then
191191
// divide by 2.

Modules/Filtering/Denoising/include/itkPatchBasedDenoisingImageFilter.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1514,7 +1514,7 @@ PatchBasedDenoisingImageFilter<TInputImage, TOutputImage>::ThreadedComputeSigmaU
15141514
// Create two images to list adaptors, one for the iteration over the region
15151515
// the other for querying to find the patches set the region of interest for
15161516
// the second to only include patches with at least as many in-bounds
1517-
// neighborsin the same areas of the patch as the query patch
1517+
// neighbors in the same areas of the patch as the query patch
15181518
// initialize accumulators
15191519
// for each element in the region
15201520
// set region of interest
@@ -1905,7 +1905,7 @@ PatchBasedDenoisingImageFilter<TInputImage, TOutputImage>::ComputeImageUpdate()
19051905

19061906
str.Filter = this;
19071907

1908-
// Compute smoothing updated for intensites at each pixel
1908+
// Compute smoothing updated for intensities at each pixel
19091909
// based on gradient of the joint entropy
19101910
this->GetMultiThreader()->SetNumberOfWorkUnits(this->GetNumberOfWorkUnits());
19111911
this->GetMultiThreader()->SetSingleMethod(this->ComputeImageUpdateThreaderCallback, &str);
@@ -2336,7 +2336,7 @@ PatchBasedDenoisingImageFilter<TInputImage, TOutputImage>::ComputeGradientJointE
23362336
{
23372337
squaredNorm[ic] += centerPatchSquaredNorm[ic];
23382338
}
2339-
} // end if entire patch is inbounds
2339+
} // end if entire patch is in bounds
23402340

23412341
useCachedComputations = true;
23422342

Modules/Filtering/DiffusionTensorImage/include/itkDiffusionTensor3DReconstructionImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ DiffusionTensor3DReconstructionImageFilter<TReferenceImagePixelType,
218218
gradientItContainer.push_back(git);
219219
}
220220

221-
// Iterate over the reference and gradient images and solve the steskal
221+
// Iterate over the reference and gradient images and solve the Stejskal
222222
// equations to reconstruct the Diffusion tensor.
223223
// See splweb.bwh.harvard.edu:8000/pages/papers/westin/ISMRM2002.pdf
224224
// "A Dual Tensor Basis Solution to the Stejskal-Tanner Equations for

Modules/Filtering/DisplacementField/include/itkDisplacementFieldJacobianDeterminantFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ DisplacementFieldJacobianDeterminantFilter<TInputImage, TRealType, TOutputImage>
158158
}
159159
}
160160
//
161-
// cast might not be necessary, but CastImagefilter is optimized for
161+
// cast might not be necessary, but CastImageFilter is optimized for
162162
// the case where the InputImageType == OutputImageType
163163
typename CastImageFilter<TInputImage, RealVectorImageType>::Pointer caster =
164164
CastImageFilter<TInputImage, RealVectorImageType>::New();

Modules/Filtering/DistanceMap/include/itkSignedMaurerDistanceMapImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ SignedMaurerDistanceMapImageFilter<TInputImage, TOutputImage>::GenerateData()
135135
binaryFilter->Update();
136136

137137
// Dilate the inverted image by 1 pixel to give it the same boundary
138-
// as the univerted inputPtr.
138+
// as the uninverted inputPtr.
139139
using BorderFilterType = BinaryContourImageFilter<OutputImageType, OutputImageType>;
140140
auto borderFilter = BorderFilterType::New();
141141
borderFilter->SetInput(binaryFilter->GetOutput());

0 commit comments

Comments
 (0)