Skip to content

Commit ac95ff8

Browse files
committed
DOCS: Minor changes.
1 parent 335b495 commit ac95ff8

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

include/itkIsotropicWaveletFrequencyFunction.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ class IsotropicWaveletFrequencyFunction:
114114
virtual ~IsotropicWaveletFrequencyFunction();
115115
virtual void PrintSelf(std::ostream & os, Indent indent) const ITK_OVERRIDE;
116116

117-
unsigned int m_HighPassSubBands;
117+
unsigned int m_HighPassSubBands;
118118
FunctionValueType m_FreqCutOff;
119119

120120
private:

include/itkWaveletFrequencyInverse.hxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,8 @@ WaveletFrequencyInverse< TInputImage, TOutputImage,
377377
low_pass_per_level = multiplyUpsampleCorrection->GetOutput();
378378

379379
/******* Calculate FilterBank with the right size per level. *****/
380-
// TODO Save the FilterBank vector created in the forward wavelet and load it here to save compute it again.
380+
// Save the FilterBank vector created in the forward wavelet and load it here to save compute it again.
381+
// TODO perform regression test between two approaches.
381382

382383
InputImagePointer waveletLow;
383384
if ( !this->m_UseWaveletFilterBankPyramid )

test/itkRieszWaveletPhaseAnalysisTest.cxx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,11 @@ runRieszWaveletPhaseAnalysisTest( const std::string& inputImage,
124124
for ( unsigned int i = 0; i < forwardWavelet->GetNumberOfOutputs(); ++i )
125125
{
126126
std::cout << "Output #: " << i << " / " << numberOfOutputs - 1 << std::endl;
127+
// if( i == numberOfOutputs - 1 ) // TODO Held does not modify approx image, but it does not generate better results.
128+
// {
129+
// modifiedWavelets.push_back( analysisWavelets[i] );
130+
// continue;
131+
// }
127132
typename MonogenicSignalFrequencyFilterType::Pointer monoFilter =
128133
MonogenicSignalFrequencyFilterType::New();
129134
typename VectorInverseFFTType::Pointer vecInverseFFT =
@@ -142,10 +147,6 @@ runRieszWaveletPhaseAnalysisTest( const std::string& inputImage,
142147

143148
phaseAnalyzer->SetInput( vecInverseFFT->GetOutput() );
144149
phaseAnalyzer->SetApplySoftThreshold( applySoftThreshold );
145-
// if( i == numberOfOutputs - 1 ) // TODO Held does not modify approx image, but it does not generate better results.
146-
// {
147-
// phaseAnalyzer->SetApplySoftThreshold( false );
148-
// }
149150
phaseAnalyzer->Update();
150151

151152
fftForwardPhaseFilter->SetInput( phaseAnalyzer->GetOutputCosPhase() );
@@ -193,7 +194,7 @@ runRieszWaveletPhaseAnalysisTest( const std::string& inputImage,
193194
#endif
194195

195196
// Cast To Float for save as tiff.
196-
typedef itk::Image< float, Dimension > ImageFloatType;
197+
typedef itk::Image< float, Dimension > ImageFloatType;
197198
typedef itk::CastImageFilter< ImageType, ImageFloatType> CastFloatType;
198199
typename CastFloatType::Pointer caster = CastFloatType::New();
199200
caster->SetInput(inverseFFT->GetOutput());

0 commit comments

Comments
 (0)