Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Main Repositories
otb
Commits
547f9d85
Commit
547f9d85
authored
Feb 10, 2016
by
Stéphane Albert
Browse files
ENH: Implemented GDALOverviewsBuilder::GetOverviewsCount().
parent
c9d61642
Changes
2
Hide whitespace changes
Inline
Side-by-side
Modules/IO/IOGDAL/include/otbGDALOverviewsBuilder.h
View file @
547f9d85
...
...
@@ -94,7 +94,7 @@ public:
unsigned
int
CountResolutions
(
unsigned
int
factor
,
unsigned
int
n
=
0
)
const
;
int
GetOverviewsCount
()
const
;
unsigned
int
GetOverviewsCount
()
const
;
GDALResampling
GetResamplingMethod
()
const
;
...
...
Modules/IO/IOGDAL/src/otbGDALOverviewsBuilder.cxx
View file @
547f9d85
...
...
@@ -121,6 +121,16 @@ GDALOverviewsBuilder
return
count
;
}
/***************************************************************************/
unsigned
int
GDALOverviewsBuilder
::
GetOverviewsCount
()
const
{
assert
(
!
m_GdalDataset
.
IsNull
()
);
return
m_GdalDataset
->
GetOverviewsCount
();
}
/***************************************************************************/
GDALResampling
GDALOverviewsBuilder
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment