Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
otb
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
Julien Cabieces
otb
Commits
c859b551
Commit
c859b551
authored
9 years ago
by
Christophe Palmann
Browse files
Options
Downloads
Patches
Plain Diff
ENH: removed gain factor
parent
1846bb09
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx
+1
-7
1 addition, 7 deletions
...es/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx
with
1 addition
and
7 deletions
Modules/Applications/AppSARPolarSynth/app/otbSARPolarSynth.cxx
+
1
−
7
View file @
c859b551
...
...
@@ -75,7 +75,7 @@ private:
"Note: this application doesn't take into account the terms which do not depend on the polarization of the antennas.
\n
"
"The parameter gain can be used for this purpose.
\n
"
"
\n
"
"The final formula is thus : P =
gain x
| B^T . [S] . A |², where A ans B are two Jones vectors and S is a Sinclair matrix."
);
"The final formula is thus : P = | B^T . [S] . A |², where A ans B are two Jones vectors and S is a Sinclair matrix."
);
SetDocLimitations
(
"None"
);
SetDocAuthors
(
"OTB-Team"
);
...
...
@@ -128,10 +128,6 @@ private:
AddChoice
(
"mode.cross"
,
"Crosspolarization"
);
SetParameterDescription
(
"mode.cross"
,
"Crosspolarization"
);
AddParameter
(
ParameterType_Float
,
"gain"
,
"Gain"
);
SetParameterDescription
(
"gain"
,
"Gain (final power = gain x synthetized power)"
);
SetMinimumParameterFloatValue
(
"gain"
,
0.0
);
MandatoryOff
(
"gain"
);
AddRAMParameter
();
...
...
@@ -142,7 +138,6 @@ private:
SetDefaultParameterFloat
(
"khir"
,
0.
);
SetDefaultParameterInt
(
"emissionh"
,
0
);
SetDefaultParameterInt
(
"emissionv"
,
0
);
SetDefaultParameterFloat
(
"gain"
,
1.0
);
SetDefaultParameterFloat
(
"mode"
,
0
);
// Doc example parameter settings
...
...
@@ -169,7 +164,6 @@ private:
m_MCPSFilter
->
SetKhiR
(
GetParameterFloat
(
"khir"
));
m_MCPSFilter
->
SetEmissionH
(
GetParameterInt
(
"emissionh"
));
m_MCPSFilter
->
SetEmissionV
(
GetParameterInt
(
"emissionv"
));
m_MCPSFilter
->
SetGain
(
GetParameterFloat
(
"gain"
));
m_MCPSFilter
->
SetMode
(
GetParameterInt
(
"mode"
));
ComplexFloatVectorImageType
*
inVImage
=
GetParameterComplexImage
(
"in"
);
...
...
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