Skip to content
Snippets Groups Projects
Commit 2e28dc9a authored by Guillaume Borrut's avatar Guillaume Borrut
Browse files

appel au functor via GetFunctor

parent 33349235
No related branches found
No related tags found
No related merge requests found
...@@ -328,7 +328,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag ...@@ -328,7 +328,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag
while( !inputItHH.IsAtEnd() ) while( !inputItHH.IsAtEnd() )
{ {
outputIt.Set( m_Gain * m_Functor(inputItHH.Get(), inputItHV.Get(), inputItVH.Get(), inputItVV.Get()) ); outputIt.Set( m_Gain * Superclass::GetFunctor()(inputItHH.Get(), inputItHV.Get(), inputItVH.Get(), inputItVV.Get()) );
++inputItHH; ++inputItHH;
++inputItHV; ++inputItHV;
++inputItVH; ++inputItVH;
...@@ -362,7 +362,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag ...@@ -362,7 +362,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag
while( !inputItHH.IsAtEnd() ) while( !inputItHH.IsAtEnd() )
{ {
outputIt.Set( m_Gain * m_Functor(inputItHH.Get(), inputItHV.Get(), inputItHV.Get(), inputItVV.Get()) ); outputIt.Set( m_Gain * Superclass::GetFunctor()(inputItHH.Get(), inputItHV.Get(), inputItHV.Get(), inputItVV.Get()) );
++inputItHH; ++inputItHH;
++inputItHV; ++inputItHV;
++inputItVV; ++inputItVV;
...@@ -395,7 +395,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag ...@@ -395,7 +395,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag
while( !inputItHH.IsAtEnd() ) while( !inputItHH.IsAtEnd() )
{ {
outputIt.Set( m_Gain * m_Functor(inputItHH.Get(), inputItVH.Get(), inputItVH.Get(), inputItVV.Get()) ); outputIt.Set( m_Gain * Superclass::GetFunctor()(inputItHH.Get(), inputItVH.Get(), inputItVH.Get(), inputItVV.Get()) );
++inputItHH; ++inputItHH;
++inputItVH; ++inputItVH;
++inputItVV; ++inputItVV;
...@@ -424,7 +424,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag ...@@ -424,7 +424,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag
while( !inputItHH.IsAtEnd() ) while( !inputItHH.IsAtEnd() )
{ {
outputIt.Set( m_Gain * m_Functor(inputItHH.Get(), inputItHV.Get(), 0,0 )); outputIt.Set( m_Gain * Superclass::GetFunctor()(inputItHH.Get(), inputItHV.Get(), 0,0 ));
++inputItHH; ++inputItHH;
++inputItHV; ++inputItHV;
++outputIt; ++outputIt;
...@@ -451,7 +451,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag ...@@ -451,7 +451,7 @@ PolarimetricSynthesisFilter<TInputImageHH,TInputImageHV,TInputImageVH,TInputImag
while( !inputItVH.IsAtEnd() ) while( !inputItVH.IsAtEnd() )
{ {
outputIt.Set( m_Gain * m_Functor(0,0, inputItVH.Get(), inputItVV.Get()) ); outputIt.Set( m_Gain * Superclass::GetFunctor()(0,0, inputItVH.Get(), inputItVV.Get()) );
++inputItVH; ++inputItVH;
++inputItVV; ++inputItVV;
++outputIt; ++outputIt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment