Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
diapotb
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
Container Registry
Model registry
Operate
Environments
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
Remote Modules
diapotb
Commits
d80ee984
Commit
d80ee984
authored
3 years ago
by
Abdussalam SALEH MGHIR
Browse files
Options
Downloads
Patches
Plain Diff
STYLE : Update the commentary for the SARDerampImageFilter
parent
07d10825
Loading
Loading
2 merge requests
!52
Merge for v1.1.0
,
!43
Add TSX to SARDeramp
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/otbSARDerampImageFilter.h
+5
-5
5 additions, 5 deletions
include/otbSARDerampImageFilter.h
include/otbSARDerampImageFilter.txx
+2
-2
2 additions, 2 deletions
include/otbSARDerampImageFilter.txx
with
7 additions
and
7 deletions
include/otbSARDerampImageFilter.h
+
5
−
5
View file @
d80ee984
...
...
@@ -208,15 +208,15 @@ protected:
/* SARDerampImageFilter has now a subclass for each different sensor.
* So, the method to compute Phi and the attributes used to compute it are now different for each subclass.
* That is why getPhi() and ThreadInit() are virtual methods to be overwritten in each subclass.
*/
virtual
double
getPhi
(
double
indL
,
double
indC
)
=
0
;
virtual
void
ThreadInit
(
ImageKeywordlist
inputKWL
)
=
0
;
void
getShifts
(
ImageIndexType
index
,
double
&
shift_ran
,
double
&
shift_azi
);
//Parameters
// Deramp (if true) or Reramp (if false) mode
bool
m_DerampMode
;
...
...
This diff is collapsed.
Click to expand it.
include/otbSARDerampImageFilter.txx
+
2
−
2
View file @
d80ee984
...
...
@@ -297,7 +297,7 @@ namespace otb
itkExceptionMacro(<<"Header version is inferior to 3. Please Upgrade your geom file");
}
this->ThreadInit(inputKWL);
this->ThreadInit(inputKWL);
// this method is overwritten in each subclass
}
}
...
...
@@ -349,7 +349,7 @@ namespace otb
}
// Phi
double Phi = this->getPhi(indL,indC);
double Phi = this->getPhi(indL,indC);
// this method is overwritten in each subclass
// Deramping or Reramping
if (!m_DerampMode)
...
...
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