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
ae906c92
Commit
ae906c92
authored
9 years ago
by
Rashad Kanavath
Browse files
Options
Downloads
Patches
Plain Diff
add typedef for std::vector<string>, std::vector<unsigned int> and use it
parent
ee920481
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/otbImageMetadataInterfaceBase.h
+8
-7
8 additions, 7 deletions
...les/Core/Metadata/include/otbImageMetadataInterfaceBase.h
with
8 additions
and
7 deletions
Modules/Core/Metadata/include/otbImageMetadataInterfaceBase.h
+
8
−
7
View file @
ae906c92
...
...
@@ -53,6 +53,8 @@ public:
typedef
MetaDataKey
::
VariableLengthVectorType
VariableLengthVectorType
;
typedef
ImageKeywordlist
ImageKeywordlistType
;
typedef
unsigned
int
UnsignedIntType
;
typedef
std
::
vector
<
std
::
string
>
StringVectorType
;
typedef
std
::
vector
<
unsigned
int
>
UIntVectorType
;
/** Set the image used to get the metadata */
...
...
@@ -80,7 +82,7 @@ public:
std
::
string
GetGCPProjection
()
const
;
// otbMetadataGetMacro(GCPProjection, std::string);
u
nsigned
int
GetGCPCount
()
const
;
U
nsigned
IntType
GetGCPCount
()
const
;
// otbMetadataGetMacro(GCPCount, unsigned int);
OTB_GCP
&
GetGCPs
(
unsigned
int
GCPnum
);
...
...
@@ -107,7 +109,7 @@ public:
double
GetGCPZ
(
unsigned
int
GCPnum
)
const
;
// otbMetadataGetGCPnumMacro(GCPZ, double, GCPnum, unsigned int);
/**
/**
* Get The no data flags if existing
* return False otherwise
*/
...
...
@@ -141,11 +143,11 @@ public:
//otbMetadataGetMacro(SensorID, std::string);
/** Get the number of bands from the ossim metadata */
u
nsigned
int
GetNumberOfBands
()
const
;
U
nsigned
IntType
GetNumberOfBands
()
const
;
//otbMetadataGetMacro(NumberOfBands, unsigned int);
/** Get the band name from the ossim metadata */
std
::
vector
<
std
::
string
>
GetBandName
()
const
;
StringVectorType
GetBandName
()
const
;
//otbMetadataGetMacro(BandName, std::vector<std::string>);
/** Get the x pixel spacing*/
...
...
@@ -156,7 +158,6 @@ public:
double
GetYPixelSpacing
()
const
;
//otbMetadataGetMacro(YPixelSpacing, double);
/** Get the imaging acquisition day from the ossim metadata */
virtual
int
GetDay
()
const
=
0
;
// otbMetadataGetMacro(Day, int);
...
...
@@ -190,11 +191,11 @@ public:
//otbMetadataGetMacro(ProductionYear, int);
/** Convert the band names provided by ossim to the official band names */
virtual
std
::
vector
<
std
::
string
>
GetEnhancedBandNames
()
const
=
0
;
virtual
StringVectorType
GetEnhancedBandNames
()
const
=
0
;
/** Get the 3 spectral band numbers corresponding to the default display for visualization,
* in the order R, G, B */
virtual
std
::
vector
<
unsigned
int
>
GetDefaultDisplay
()
const
=
0
;
virtual
UIntVectorType
GetDefaultDisplay
()
const
=
0
;
virtual
bool
CanRead
()
const
=
0
;
...
...
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