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
b703fa77
Commit
b703fa77
authored
6 years ago
by
Gaëlle USSEGLIO
Browse files
Options
Downloads
Patches
Plain Diff
ENH : New chain for IW processing (part 2 : Ground and DINSAR chain
parent
85abb384
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!8
Deramp
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/otbSARInterferogramImageFilter.txx
+7
-5
7 additions, 5 deletions
include/otbSARInterferogramImageFilter.txx
python_src/diapOTB_S1IW.py
+189
-118
189 additions, 118 deletions
python_src/diapOTB_S1IW.py
python_src/ex_config_S1IW.ini
+7
-1
7 additions, 1 deletion
python_src/ex_config_S1IW.ini
with
203 additions
and
124 deletions
include/otbSARInterferogramImageFilter.txx
+
7
−
5
View file @
b703fa77
...
...
@@ -322,10 +322,10 @@ namespace otb
///////// Checks margin with ML factors (for averaging) /////////////
if (m_MLRan != 0 || m_MLAzi != 0)
{
if (m_MLRan < m_MarginRan || m_MLAzi < m_MarginAzi)
{
itkExceptionMacro(<<"Margin for averaging can't be superior to ML Factors.");
}
//
if (m_MLRan < m_MarginRan || m_MLAzi < m_MarginAzi)
//
{
//
itkExceptionMacro(<<"Margin for averaging can't be superior to ML Factors.");
//
}
}
...
...
@@ -888,8 +888,10 @@ namespace otb
double mod_Acc = sqrt(complexMulConjTab_Re[colCounter]*complexMulConjTab_Re[colCounter] +
complexMulConjTab_Im[colCounter]*complexMulConjTab_Im[colCounter]);
int countPixel = (m_MLRan + 2*m_MarginRan) * (m_MLAzi + 2*m_MarginAzi);
// Amplitude
outPixel[0] = m_Gain * sqrt((complexMulConjTab_Mod[colCounter]/(
m_MLRan*m_MLAzi
)));
outPixel[0] = m_Gain * sqrt((complexMulConjTab_Mod[colCounter]/(
countPixel
)));
// Phase
outPixel[1] = std::atan2(complexMulConjTab_Im[colCounter],
...
...
This diff is collapsed.
Click to expand it.
python_src/diapOTB_S1IW.py
+
189
−
118
View file @
b703fa77
This diff is collapsed.
Click to expand it.
python_src/ex_config_S1IW.ini
+
7
−
1
View file @
b703fa77
...
...
@@ -15,4 +15,10 @@ doppler_file = dop0.txt
[DIn_SAR]
\ No newline at end of file
[DIn_SAR]
GridStep_range
=
150
GridStep_azimut
=
150
Grid_Threshold
=
0.3
Grid_Gap
=
0.7
Interferogram_gain
=
0.
Interferogram_ortho
=
no
\ No newline at end of file
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