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
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
Antoine Belvire
otb
Commits
7ed20968
Commit
7ed20968
authored
9 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
ENH: base class for getting lookupdata for sar sensors
parent
e1e46886
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
Modules/Core/Metadata/include/otbSarCalibrationLookupData.h
+72
-0
72 additions, 0 deletions
Modules/Core/Metadata/include/otbSarCalibrationLookupData.h
with
72 additions
and
0 deletions
Modules/Core/Metadata/include/otbSarCalibrationLookupData.h
0 → 100644
+
72
−
0
View file @
7ed20968
#ifndef SarCalibrationLookupData_H
#define SarCalibrationLookupData_H 1
#include
<string>
#include
<itkLightObject.h>
#include
<itkNumericTraits.h>
#include
<itkObjectFactory.h>
namespace
otb
{
class
ITK_EXPORT
SarCalibrationLookupData
:
public
itk
::
LightObject
{
public:
/** Standard typedefs */
typedef
SarCalibrationLookupData
Self
;
typedef
itk
::
LightObject
Superclass
;
typedef
itk
::
SmartPointer
<
Self
>
Pointer
;
typedef
itk
::
SmartPointer
<
const
Self
>
ConstPointer
;
/** Creation through the object factory */
itkNewMacro
(
Self
);
/** RTTI */
itkTypeMacro
(
SarCalibrationLookupData
,
itk
::
LightObject
);
typedef
itk
::
IndexValueType
IndexValueType
;
enum
{
SIGMA
=
0
,
BETA
,
GAMMA
,
DN
};
SarCalibrationLookupData
()
:
m_Type
(
0
)
{
}
virtual
~
SarCalibrationLookupData
()
{
}
virtual
double
GetValue
(
const
IndexValueType
itkNotUsed
(
x
),
const
IndexValueType
itkNotUsed
(
y
))
{
return
1.0
;
}
void
SetType
(
short
t
)
{
m_Type
=
t
;
}
itkGetMacro
(
Type
,
short
);
void
PrintSelf
(
std
::
ostream
&
os
,
itk
::
Indent
indent
)
const
{
os
<<
indent
<<
" lookup table type:'"
<<
m_Type
<<
"'"
<<
std
::
endl
;
Superclass
::
PrintSelf
(
os
,
indent
);
}
private
:
SarCalibrationLookupData
(
const
Self
&
);
//purposely not implemented
void
operator
=
(
const
Self
&
);
//purposely not implemented
short
m_Type
;
};
}
#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