Skip to content
Snippets Groups Projects
Commit dc3b54ae authored by Patrick Imbo's avatar Patrick Imbo
Browse files

otbForwardFourierMellinTransformImageFilter : implémentation de la classe + tests

parent 5fb358ef
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,7 @@ ForwardFourierMellinTransformImageFilter<TPixel, TInterpol, Dimension > ...@@ -39,7 +39,7 @@ ForwardFourierMellinTransformImageFilter<TPixel, TInterpol, Dimension >
::GenerateData() ::GenerateData()
{ {
m_LogPolarResample->SetInput( this->GetInput() ); m_LogPolarResample->SetInput( this->GetInput() );
m_FourierTransform->SetInput( m_LogPolarResample->GetInput() ); m_FourierTransform->SetInput( m_LogPolarResample->GetOutput() );
m_FourierTransform->GraftOutput( this->GetOutput() ); m_FourierTransform->GraftOutput( this->GetOutput() );
m_FourierTransform->Update(); m_FourierTransform->Update();
this->GraftOutput(m_FourierTransform->GetOutput() ); this->GraftOutput(m_FourierTransform->GetOutput() );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment