Skip to content
Snippets Groups Projects
Commit 580dcfe6 authored by Luc Hermitte's avatar Luc Hermitte
Browse files

BUG: Add missing commit

parent 093a90b5
No related branches found
No related tags found
1 merge request!1Resolve "Adapt DiapOTB SARCartesianMeanEstimation to keep shadows"
......@@ -168,7 +168,7 @@ protected:
SARDEMPolygonsAnalysisImageFilter() = default;
// Destructor
virtual ~SARDEMPolygonsAnalysisImageFilter() final = default;
~SARDEMPolygonsAnalysisImageFilter() final = default;
// Print
void PrintSelf(std::ostream & os, itk::Indent indent) const final;
......@@ -180,7 +180,7 @@ protected:
* As such, SARDEMPolygonsAnalysisImageFilter needs to provide an implementation for
* GenerateOutputInformation() in order to inform the pipeline execution model.
*/
virtual void GenerateOutputInformation() final;
void GenerateOutputInformation() final;
/**
* SARDEMPolygonsAnalysisImageFilter needs a input requested region that corresponds to the projection
......@@ -188,13 +188,15 @@ protected:
* As such, SARQuadraticAveragingImageFilter needs to provide an implementation for
* GenerateInputRequestedRegion() in order to inform the pipeline execution model.
* \sa ProcessObject::GenerateInputRequestedRegion() */
virtual void GenerateInputRequestedRegion() final;
void GenerateInputRequestedRegion() final;
/**
* OutputRegionToInputRegion returns the input region. This input region corresponds to the outputRegion.
*/
ImageInRegionType OutputRegionToInputRegion(const ImageOutRegionType& outputRegion) const;
void BeforeThreadedGenerateData() final;
/**
* SARDEMPolygonsAnalysisImageFilter can be implemented as a multithreaded filter.
* Therefore, this implementation provides a ThreadedGenerateData() routine
......@@ -206,7 +208,7 @@ protected:
*
* \sa ImageToImageFilter::ThreadedGenerateData(),
* ImageToImageFilter::GenerateData() */
virtual void ThreadedGenerateData(const ImageOutRegionType& outputRegionForThread, itk::ThreadIdType threadId) final;
void ThreadedGenerateData(const ImageOutRegionType& outputRegionForThread, itk::ThreadIdType threadId) final;
/**
* Select for the current SAR Line (ind_LineSAR), the polygons that intersect the current SAR line.
......@@ -275,6 +277,9 @@ private:
// RSTransform (for inverse localisation)
RSTransformType2D::Pointer m_RSTransform;
std::vector<bool> m_is_lineX_sorted;
bool m_all_lines_are_sorted = false;
};
} // End namespace otb
......
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