Commit d04b0c38 authored by Antoine Regimbeau's avatar Antoine Regimbeau
Browse files

REFAC : refactoring of the application otbContrastEnhancement

No related merge requests found
Showing with 249 additions and 164 deletions
+249 -164
This diff is collapsed.
...@@ -123,9 +123,9 @@ void ApplyGainFilter < TInputImage , TLut , TOutputImage > ...@@ -123,9 +123,9 @@ void ApplyGainFilter < TInputImage , TLut , TOutputImage >
typename InputImageType::ConstPointer input ( GetInputImage() ); typename InputImageType::ConstPointer input ( GetInputImage() );
typename LutType::ConstPointer lut ( GetInputLut() ); typename LutType::ConstPointer lut ( GetInputLut() );
typename OutputImageType::Pointer output ( this->GetOutput() ); typename OutputImageType::Pointer output ( this->GetOutput() );
typename InputImageType::RegionType inputRegionForThread; typename InputImageType::RegionType inputRegionForThread(
outputRegionForThread );
inputRegionForThread = outputRegionForThread ;
itk::ImageRegionConstIteratorWithIndex < InputImageType > it ( input , itk::ImageRegionConstIteratorWithIndex < InputImageType > it ( input ,
inputRegionForThread ); inputRegionForThread );
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment