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
09d3a30a
Commit
09d3a30a
authored
4 years ago
by
Cédric Traizet
Browse files
Options
Downloads
Patches
Plain Diff
ENH: add a Merge method in ImageMetadataé
parent
ad1fa0ab
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Modules/Core/Metadata/include/otbImageMetadata.h
+11
-1
11 additions, 1 deletion
Modules/Core/Metadata/include/otbImageMetadata.h
Modules/Core/Metadata/src/otbImageMetadata.cxx
+25
-8
25 additions, 8 deletions
Modules/Core/Metadata/src/otbImageMetadata.cxx
with
36 additions
and
9 deletions
Modules/Core/Metadata/include/otbImageMetadata.h
+
11
−
1
View file @
09d3a30a
...
...
@@ -228,6 +228,11 @@ public:
* Returns True if all keywords were parsed correctly.
*/
bool
FromKeywordlist
(
const
Keywordlist
&
);
/** Merge with another ImageMetadataBase
* If a key exists in both ImageMetadataBase, keeps the value of this ImageMetadataBase. */
void
Fuse
(
const
ImageMetadataBase
&
);
};
...
...
@@ -263,12 +268,17 @@ public:
ImageMetadata
slice
(
int
start
,
int
end
)
const
;
/** concatenate with an other ImageMetadata
* If a key exists in bot ImageMetadata, keeps the value of this ImageMetadata.*/
* If a key exists in bot
h
ImageMetadata, keeps the value of this ImageMetadata.*/
void
append
(
const
ImageMetadata
&
);
/** if all bands share the same value of a key, put it at top level */
void
compact
();
/** merge with another ImageMetadata
* If a key exists in both ImageMetadata, keeps the value of this ImageMetadata.
* */
void
Merge
(
const
ImageMetadata
&
);
/** Append the Metadata to a vector of KeywordList.
* The first KeywordList contains the metadata common to all the bands.
* The following KeywordList contains the metadata of the bands.
...
...
This diff is collapsed.
Click to expand it.
Modules/Core/Metadata/src/otbImageMetadata.cxx
+
25
−
8
View file @
09d3a30a
...
...
@@ -400,6 +400,20 @@ bool ImageMetadataBase::FromKeywordlist(const Keywordlist& kwl)
return
all_parsed
;
}
/** concatenate with an other ImageMetadata */
void
ImageMetadataBase
::
Fuse
(
const
ImageMetadataBase
&
imd
)
{
// Copy the keys
this
->
GeometryKeys
.
insert
(
imd
.
GeometryKeys
.
begin
(),
imd
.
GeometryKeys
.
end
());
this
->
NumericKeys
.
insert
(
imd
.
NumericKeys
.
begin
(),
imd
.
NumericKeys
.
end
());
this
->
StringKeys
.
insert
(
imd
.
StringKeys
.
begin
(),
imd
.
StringKeys
.
end
());
this
->
LUT1DKeys
.
insert
(
imd
.
LUT1DKeys
.
begin
(),
imd
.
LUT1DKeys
.
end
());
this
->
LUT2DKeys
.
insert
(
imd
.
LUT2DKeys
.
begin
(),
imd
.
LUT2DKeys
.
end
());
this
->
TimeKeys
.
insert
(
imd
.
TimeKeys
.
begin
(),
imd
.
TimeKeys
.
end
());
this
->
ExtraKeys
.
insert
(
imd
.
ExtraKeys
.
begin
(),
imd
.
ExtraKeys
.
end
());
}
// ----------------------- [ImageMetadata] ------------------------------
ImageMetadata
::
ImageMetadata
()
...
...
@@ -432,18 +446,21 @@ ImageMetadata ImageMetadata::slice(int start, int end) const
/** concatenate with an other ImageMetadata */
void
ImageMetadata
::
append
(
const
ImageMetadata
&
imd
)
{
// Copy the keys
this
->
GeometryKeys
.
insert
(
imd
.
GeometryKeys
.
begin
(),
imd
.
GeometryKeys
.
end
());
this
->
NumericKeys
.
insert
(
imd
.
NumericKeys
.
begin
(),
imd
.
NumericKeys
.
end
());
this
->
StringKeys
.
insert
(
imd
.
StringKeys
.
begin
(),
imd
.
StringKeys
.
end
());
this
->
LUT1DKeys
.
insert
(
imd
.
LUT1DKeys
.
begin
(),
imd
.
LUT1DKeys
.
end
());
this
->
LUT2DKeys
.
insert
(
imd
.
LUT2DKeys
.
begin
(),
imd
.
LUT2DKeys
.
end
());
this
->
TimeKeys
.
insert
(
imd
.
TimeKeys
.
begin
(),
imd
.
TimeKeys
.
end
());
this
->
ExtraKeys
.
insert
(
imd
.
ExtraKeys
.
begin
(),
imd
.
ExtraKeys
.
end
());
ImageMetadataBase
::
Fuse
(
imd
);
// Copy the bands
this
->
Bands
.
insert
(
this
->
Bands
.
end
(),
imd
.
Bands
.
begin
(),
imd
.
Bands
.
end
());
}
void
ImageMetadata
::
Merge
(
const
ImageMetadata
&
imd
)
{
ImageMetadataBase
::
Fuse
(
imd
);
for
(
unsigned
int
i
=
0
;
i
<
std
::
min
(
Bands
.
size
(),
imd
.
Bands
.
size
());
i
++
)
{
Bands
[
i
].
Fuse
(
imd
.
Bands
[
i
]);
}
}
/** if all bands share the same value of a key, put it at top level */
void
ImageMetadata
::
compact
()
{
...
...
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