Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NORMLIM_sigma0
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s1-tiling
NORMLIM_sigma0
Commits
580dcfe6
Commit
580dcfe6
authored
2 years ago
by
Luc Hermitte
Browse files
Options
Downloads
Patches
Plain Diff
BUG: Add missing commit
parent
093a90b5
No related branches found
No related tags found
1 merge request
!1
Resolve "Adapt DiapOTB SARCartesianMeanEstimation to keep shadows"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/otbSARDEMPolygonsAnalysisImageFilter2.h
+9
-4
9 additions, 4 deletions
include/otbSARDEMPolygonsAnalysisImageFilter2.h
with
9 additions
and
4 deletions
include/otbSARDEMPolygonsAnalysisImageFilter2.h
+
9
−
4
View file @
580dcfe6
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment