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
David Youssefi
otb
Commits
7b81b2ef
Commit
7b81b2ef
authored
15 years ago
by
Emmanuel Christophe
Browse files
Options
Downloads
Patches
Plain Diff
WRG: signed-unsigned comparison in RadarFunctors
parent
96e48dc9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Code/Radiometry/otbRadarFunctors.txx
+18
-18
18 additions, 18 deletions
Code/Radiometry/otbRadarFunctors.txx
with
18 additions
and
18 deletions
Code/Radiometry/otbRadarFunctors.txx
+
18
−
18
View file @
7b81b2ef
...
...
@@ -45,7 +45,7 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
m_PRF = 1.;
}
template <class TInput, class TOutput>
double
TerraSarCalibrationImageFunctor<TInput, TOutput>
...
...
@@ -63,11 +63,11 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
{
curRange = m_NoiseRangeValidityRef + ( m_NoiseRangeValidityMax-m_NoiseRangeValidityRef )/width_2 * (static_cast<double>(colId+1) - width_2 );
}
return curRange;
}
template <class TInput, class TOutput>
typename TerraSarCalibrationImageFunctor<TInput, TOutput>::DoubleVectorType
TerraSarCalibrationImageFunctor<TInput, TOutput>
...
...
@@ -75,7 +75,7 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
{
DoubleVectorType curCoeffs;
if(m_UseFastCalibrationMethod)
{
{
curCoeffs = m_NoisePolynomialCoefficientsList[0];
}
else
...
...
@@ -89,7 +89,7 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
bool go = true;
// deduct the corresponding noise acquisition index
while( id<m_TimeUTC.size() && go)
{
{
if( currTimeUTC < m_TimeUTC[id] )
go = false;
id++;
...
...
@@ -114,19 +114,19 @@ TerraSarCalibrationImageFunctor<TInput, TOutput>
{
double diffCurRange = ComputeCurrentNoise( static_cast<unsigned int>(index[0]) ) - m_NoiseRangeValidityRef;
DoubleVectorType curCoeff = ComputeCurrentCoeffs( static_cast<unsigned int>(index[1]) );
TOutput outRadBr = m_RadarBrightness( inPix );
double NEBN = 0.;
for(int i=0; i<curCoeff.size(); i++)
for(
unsigned
int i=0; i<curCoeff.size(); i++)
{
NEBN += curCoeff[i]*vcl_pow( diffCurRange, i);
}
double sigma = ( outRadBr - m_CalFactor*NEBN ) * m_SinLocalIncidentAngle;
return static_cast<TOutput>(sigma);
}
/** Constructor */
template <class TInput, class TOutput>
...
...
@@ -145,7 +145,7 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
m_PRF = 1.;
}
template <class TInput, class TOutput>
double
TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
...
...
@@ -163,11 +163,11 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
{
curRange = m_NoiseRangeValidityRef + ( m_NoiseRangeValidityMax-m_NoiseRangeValidityRef )/width_2 * (static_cast<double>(colId+1) - width_2 );
}
return curRange;
}
template <class TInput, class TOutput>
typename TerraSarCalibrationComplexImageFunctor<TInput, TOutput>::DoubleVectorType
TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
...
...
@@ -175,7 +175,7 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
{
DoubleVectorType curCoeffs;
if(m_UseFastCalibrationMethod)
{
{
curCoeffs = m_NoisePolynomialCoefficientsList[0];
}
else
...
...
@@ -189,7 +189,7 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
bool go = true;
// deduct the corresponding noise acquisition index
while( id<m_TimeUTC.size() && go)
{
{
if( currTimeUTC < m_TimeUTC[id] )
go = false;
id++;
...
...
@@ -214,7 +214,7 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
{
double diffCurRange = this->ComputeCurrentNoise( static_cast<unsigned int>(index[0]) ) - this->GetNoiseRangeValidityRef();
DoubleVectorType curCoeff = this->ComputeCurrentCoeffs( static_cast<unsigned int>(index[1]) );
double modulus = std::abs(inPix);
double outRadBr = static_cast<double>(m_RadarBrightness( modulus ));
...
...
@@ -224,15 +224,15 @@ TerraSarCalibrationComplexImageFunctor<TInput, TOutput>
NEBN += curCoeff[i]*vcl_pow( diffCurRange, i);
}
double sigma = ( outRadBr - this->GetCalFactor()*NEBN ) * this->GetSinLocalIncidentAngle();
double phase = std::arg(inPix);
TOutput out(sigma*vcl_cos(phase), sigma*vcl_sin(phase));
return out;
}
}// namespace Functor
} // namespace otb
#endif
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