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

otbForwardFourierMellinTransformImageFilter : implémentation de la classe + tests

parent 5d4df6f6
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,16 @@ public:
/** InputImageType typedef support. */
typedef typename InputImageType::PixelType PixeltType;
typedef typename InputImageType::IndexType IndexType;
typedef typename InputImageType::Pointer ImagePointer;
typedef typename InputImageType::ConstPointer ImageConstPointer;
/** InputImageType typedef support. */
typedef typename OutputImageType::PixelType OutputPixeltType;
typedef typename OutputImageType::IndexType OutputIndexType;
typedef typename OutputImageType::Pointer OutputImagePointer;
typedef typename OutputImageType::ConstPointer OutputImageConstPointer;
typedef typename OutputImageType::RegionType OutputImageRegionType;
typedef typename OutputImageType::PixelType ComplexType;
......@@ -123,12 +133,20 @@ public:
void SetInterpolator( InterpolatorPointer interpolator );
// InterpolatorConstPointer GetInterpolator( void );
/** ForwardFourierMellinTransformImageFilter produces an image which is a different size
* than its input. As such, it needs to provide an implementation
* for GenerateOutputInformation() in order to inform the pipeline
* execution model. The original documentation of this method is
* below. \sa ProcessObject::GenerateOutputInformaton() */
virtual void GenerateOutputInformation();
protected:
ForwardFourierMellinTransformImageFilter();
~ForwardFourierMellinTransformImageFilter(){};
void PrintSelf(std::ostream& os, itk::Indent indent) const;
void GenerateData();
private:
ForwardFourierMellinTransformImageFilter( const Self& ); //purposely not implemented
......
......@@ -39,12 +39,47 @@ ForwardFourierMellinTransformImageFilter<TPixel, TInterpol, Dimension >
::GenerateData()
{
m_LogPolarResample->SetInput( this->GetInput() );
m_FourierTransform->SetInput( m_LogPolarResample->GetOutput() );
m_FourierTransform->GraftOutput( this->GetOutput() );
m_LogPolarResample->Update();
m_FourierTransform->SetInput( m_LogPolarResample->GetOutput() );
m_FourierTransform->GraftOutput( this->GetOutput() );
m_FourierTransform->Update();
this->GraftOutput(m_FourierTransform->GetOutput() );
this->GraftOutput( m_FourierTransform->GetOutput() );
}
/**
* Inform pipeline of required output region
*/
template < class TPixel,class TInterpol,unsigned int Dimension >
void
ForwardFourierMellinTransformImageFilter<TPixel, TInterpol, Dimension >
::GenerateOutputInformation()
{
// call the superclass' implementation of this method
Superclass::GenerateOutputInformation();
// get pointers to the input and output
ImagePointer inputPtr = const_cast<InputImageType *>( this->GetInput() );
OutputImagePointer outputPtr = this->GetOutput();;
if ( !inputPtr )
{
return;
}
m_LogPolarResample->GenerateOutputInformation();
OutputImageRegionType outputLargestPossibleRegion;
outputLargestPossibleRegion.SetSize( m_LogPolarResample->GetOutput()->GetLargestPossibleRegion().GetSize() );
outputLargestPossibleRegion.SetIndex( m_LogPolarResample->GetOutput()->GetLargestPossibleRegion().GetIndex() );
outputPtr->SetLargestPossibleRegion( outputLargestPossibleRegion );
return;
}
template < class TPixel,class TInterpol,unsigned int Dimension >
void
ForwardFourierMellinTransformImageFilter<TPixel, TInterpol, Dimension >
......
......@@ -61,7 +61,7 @@ int otbFourierMellinImageFilter(int argc, char* argv[])
// FourierMellinTransform->SetIsOriginAtCenter(true);
// FourierMellinTransform->SetAngularNumberOfSamples(512);
// FourierMellinTransform->SetRadialNumberOfSamples(513);
// FourierMellinTransform->Update();
writer->SetInput( FourierMellinTransform->GetOutput() );
writer->Update();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment