Skip to content

Commit fc383d8

Browse files
authored
Merge pull request #137 from mseng10/small-cleanup-changes
Minor changes
2 parents 3b00b35 + 692e72b commit fc383d8

35 files changed

+46
-262
lines changed

.clang-format

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
## The clang-format binaries can be downloaded as part of the clang binary distributions
77
## from http://releases.llvm.org/download.html
88
##
9-
## Use the script Utilities/Maintenance/clang-format.bash to faciliate
9+
## Use the script Utilities/Maintenance/clang-format.bash to facilitate
1010
## maintaining a consistent code style.
1111
##
1212
## EXAMPLE apply code style enforcement before commit:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Components
110110
- Reproduces Held work as a brightness equalizator / local phase
111111
detector.
112112

113-
- [x] Simoncelli, Shannon, Held and Vow Isotropoic Wavelets.
113+
- [x] Simoncelli, Shannon, Held and Vow Isotropic Wavelets.
114114
- [x] Shrinker and Expander in spatial domain with no interpolation.
115115
- [x] StructureTensor.
116116
- [x] Simple test to every wavelet (Vow, Held, Simoncelli, Shannon),

azure-pipelines.yml

Lines changed: 0 additions & 216 deletions
This file was deleted.

examples/runRieszWaveletAnalysis.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ runRieszWaveletPhaseAnalysis( const std::string& inputImage,
164164
inverseWavelet->SetHighPassSubBands( highSubBands );
165165
inverseWavelet->SetLevels( levels );
166166
inverseWavelet->SetInputs( modifiedWavelets );
167-
// The coefficients are now phases, do not apply reconstrucction factors.
167+
// The coefficients are now phases, do not apply reconstruction factors.
168168
inverseWavelet->ApplyReconstructionFactorsOff();
169169
inverseWavelet->Update();
170170

include/itkExpandWithZerosImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class ExpandWithZerosImageFilter : public ImageToImageFilter<TInputImage, TOutpu
109109
* ExpandWithZerosImageFilter needs to provide an implementation for
110110
* UpdateOutputInformation() in order to inform the pipeline execution model.
111111
* The original documentation of this method is below.
112-
* \sa ProcessObject::GenerateOutputInformaton() */
112+
* \sa ProcessObject::GenerateOutputInformation() */
113113
void
114114
GenerateOutputInformation() override;
115115

include/itkFrequencyExpandImageFilter.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ namespace itk
3333
* frequency pixels are set to Zero, no interpolation is made.
3434
*
3535
* Note that the input image shouldn't be shifted by ShiftFFTImageFilter.
36-
* It must conserve the following standard strucuture in frequency (in all dims):
36+
* It must conserve the following standard structure in frequency (in all dims):
3737
*
3838
* N = even , f_Nyq is unique, but shared between pos and neg freqs.
3939
* [ <---------f_pos ---------------f_Nyq--> ]
@@ -144,7 +144,7 @@ class FrequencyExpandImageFilter : public ImageToImageFilter<TImageType, TImageT
144144
* FrequencyExpandImageFilter needs to provide an implementation for
145145
* UpdateOutputInformation() in order to inform the pipeline execution model.
146146
* The original documentation of this method is below.
147-
* \sa ProcessObject::GenerateOutputInformaton() */
147+
* \sa ProcessObject::GenerateOutputInformation() */
148148
void
149149
GenerateOutputInformation() override;
150150

include/itkFrequencyExpandImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ FrequencyExpandImageFilter<TImageType>::GenerateData()
146146
typename ImageType::SizeType zoneSize = inputSize;
147147
typename ImageType::IndexType inputIndex = inputOriginIndex;
148148
typename ImageType::IndexType outputIndex = indexRequested;
149-
// We have to avoid break simmetry and the hermitian property.
149+
// We have to avoid break symmetry and the hermitian property.
150150
// So the output of a ComplexInverseFFT will generate complex images with non-zero imaginary part.
151151
for (unsigned int dim = 0; dim < ImageDimension; ++dim)
152152
{

include/itkFrequencyExpandViaInverseFFTImageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ class FrequencyExpandViaInverseFFTImageFilter : public ImageToImageFilter<TImage
9797
* FrequencyExpandViaInverseFFTImageFilter needs to provide an implementation for
9898
* UpdateOutputInformation() in order to inform the pipeline execution model.
9999
* The original documentation of this method is below.
100-
* \sa ProcessObject::GenerateOutputInformaton() */
100+
* \sa ProcessObject::GenerateOutputInformation() */
101101
void
102102
GenerateOutputInformation() override;
103103

include/itkFrequencyExpandViaInverseFFTImageFilter.hxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ FrequencyExpandViaInverseFFTImageFilter<TImageType>::GenerateData()
119119
}
120120

121121
/**
122-
* GenerateInputRequesteRegion
122+
* GenerateInputRequestedRegion
123123
*/
124124
template <typename TImageType>
125125
void

include/itkFrequencyShrinkImageFilter.hxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ FrequencyShrinkImageFilter<TImageType>::FrequencyShrinkImageFilter()
4848
this->m_FrequencyBandFilter->SetPassBand(lowFreqThresholdPassing, highFreqThresholdPassing);
4949
// The band is not radial, but square like.
5050
this->m_FrequencyBandFilter->SetRadialBand(false);
51-
// Pass high positive freqs but stop negative high ones, to avoid overlaping.
51+
// Pass high positive freqs but stop negative high ones, to avoid overlapping.
5252
this->m_FrequencyBandFilter->SetPassNegativeHighFrequencyThreshold(false);
5353
}
5454

@@ -323,8 +323,8 @@ FrequencyShrinkImageFilter<TImageType>::GenerateInputRequestedRegion()
323323

324324
itkAssertInDebugAndIgnoreInReleaseMacro(inputPtr != nullptr);
325325

326-
// The filter chops high frequencys [0 1...H,H-1 H-2...1].
327-
// We need the whole input image, indepently of the RequestedRegion.
326+
// The filter chops high frequencies [0 1...H,H-1 H-2...1].
327+
// We need the whole input image, independently of the RequestedRegion.
328328
inputPtr->SetRequestedRegion(inputPtr->GetLargestPossibleRegion());
329329
}
330330

0 commit comments

Comments
 (0)