1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/* ****************************************************************************
*
* Project: GDAL Utilities
* Purpose: Dump overviews to external files.
* Author: Frank Warmerdam, warmerdam@pobox.com
*
* ****************************************************************************
* Copyright (c) 2005, Frank Warmerdam
* Copyright (c) 2009-2010, Even Rouault <even dot rouault at spatialys.com>
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included
* in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
****************************************************************************/
#include "cpl_conv.h"
#include "cpl_string.h"
#include "gdal_priv.h"
#include "ogr_spatialref.h"
static void DumpBand(GDALDatasetH hBaseDS, GDALRasterBandH hBand,
const char *pszName);
/************************************************************************/
/* Usage() */
/************************************************************************/
static void Usage()
{
printf("Usage: dumpoverviews [-masks] <filename> [overview]*\n");
exit(1);
}
/************************************************************************/
/* main() */
/************************************************************************/
int main(int argc, char **argv)
{
GDALAllRegister();
argc = GDALGeneralCmdLineProcessor(argc, &argv, 0);
if (argc < 1)
exit(-argc);
/* -------------------------------------------------------------------- */
/* Process arguments. */
/* -------------------------------------------------------------------- */
const char *pszSrcFilename = nullptr;
int anReqOverviews[1000] = {};
int nReqOverviewCount = 0;
bool bMasks = false;
for (int iArg = 1; iArg < argc; iArg++)
{
if (EQUAL(argv[iArg], "-masks"))
{
bMasks = true;
}
else if (pszSrcFilename == nullptr)
{
pszSrcFilename = argv[iArg];
}
else if (atoi(argv[iArg]) > 0 || EQUAL(argv[iArg], "0"))
{
anReqOverviews[nReqOverviewCount++] = atoi(argv[iArg]);
}
else
{
Usage();
}
}
if (pszSrcFilename == nullptr)
Usage();
/* -------------------------------------------------------------------- */
/* Open the input file. */
/* -------------------------------------------------------------------- */
GDALDatasetH hSrcDS = GDALOpen(pszSrcFilename, GA_ReadOnly);
if (hSrcDS == nullptr)
exit(1);
/* ==================================================================== */
/* Process all bands. */
/* ==================================================================== */
const int nBandCount = GDALGetRasterCount(hSrcDS);
for (int iBand = 0; iBand < nBandCount; iBand++)
{
GDALRasterBandH hBaseBand = GDALGetRasterBand(hSrcDS, iBand + 1);
/* --------------------------------------------------------------------
*/
/* Process all overviews. */
/* --------------------------------------------------------------------
*/
const int nOverviewCount = GDALGetOverviewCount(hBaseBand);
for (int iOverview = 0; iOverview < nOverviewCount; iOverview++)
{
GDALRasterBandH hSrcOver = GDALGetOverview(hBaseBand, iOverview);
if (hSrcOver == nullptr)
{
fprintf(stderr, "skipping overview %d as being null\n",
iOverview);
continue;
}
/* --------------------------------------------------------------------
*/
/* Is this a requested overview? */
/* --------------------------------------------------------------------
*/
if (nReqOverviewCount > 0)
{
int i = 0; // Used after for.
for (; i < nReqOverviewCount; i++)
{
if (anReqOverviews[i] == iOverview)
break;
}
if (i == nReqOverviewCount)
continue;
}
/* --------------------------------------------------------------------
*/
/* Create matching output file. */
/* --------------------------------------------------------------------
*/
CPLString osFilename;
osFilename.Printf("%s_%d_%d.tif", CPLGetBasename(pszSrcFilename),
iBand + 1, iOverview);
DumpBand(hSrcDS, hSrcOver, osFilename);
if (bMasks)
{
CPLString osMaskFilename;
osMaskFilename.Printf("%s_%d_%d_mask.tif",
CPLGetBasename(pszSrcFilename), iBand + 1,
iOverview);
DumpBand(hSrcDS, GDALGetMaskBand(hSrcOver), osMaskFilename);
}
}
/* --------------------------------------------------------------------
*/
/* Do we dump the mask? */
/* --------------------------------------------------------------------
*/
if (bMasks)
{
CPLString osFilename;
osFilename.Printf("%s_%d_mask.tif", CPLGetBasename(pszSrcFilename),
iBand + 1);
DumpBand(hSrcDS, GDALGetMaskBand(hBaseBand), osFilename);
}
}
GDALClose(hSrcDS);
CSLDestroy(argv);
GDALDestroyDriverManager();
return 0;
}
/************************************************************************/
/* DumpBand() */
/************************************************************************/
static void DumpBand(GDALDatasetH hBaseDS, GDALRasterBandH hSrcOver,
const char *pszName)
{
/* -------------------------------------------------------------------- */
/* Get base ds info. */
/* -------------------------------------------------------------------- */
double adfGeoTransform[6] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
bool bHaveGT = GDALGetGeoTransform(hBaseDS, adfGeoTransform) == CE_None;
const int nOrigXSize = GDALGetRasterXSize(hBaseDS);
const int nOrigYSize = GDALGetRasterYSize(hBaseDS);
/* -------------------------------------------------------------------- */
/* Create matching output file. */
/* -------------------------------------------------------------------- */
const int nXSize = GDALGetRasterBandXSize(hSrcOver);
const int nYSize = GDALGetRasterBandYSize(hSrcOver);
const GDALDataType eDT = GDALGetRasterDataType(hSrcOver);
GDALDriverH hDriver = GDALGetDriverByName("GTiff");
GDALDatasetH hDstDS =
GDALCreate(hDriver, pszName, nXSize, nYSize, 1, eDT, nullptr);
if (hDstDS == nullptr)
exit(1);
/* -------------------------------------------------------------------- */
/* Apply corresponding georeferencing, scaled to size. */
/* -------------------------------------------------------------------- */
if (bHaveGT)
{
double adfOvGeoTransform[6] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0};
memcpy(adfOvGeoTransform, adfGeoTransform, sizeof(double) * 6);
adfOvGeoTransform[1] *= nOrigXSize / static_cast<double>(nXSize);
adfOvGeoTransform[2] *= nOrigXSize / static_cast<double>(nXSize);
adfOvGeoTransform[4] *= nOrigYSize / static_cast<double>(nYSize);
adfOvGeoTransform[5] *= nOrigYSize / static_cast<double>(nYSize);
GDALSetGeoTransform(hDstDS, adfOvGeoTransform);
GDALSetProjection(hDstDS, GDALGetProjectionRef(hBaseDS));
}
/* -------------------------------------------------------------------- */
/* Copy over all the image data. */
/* -------------------------------------------------------------------- */
void *pData = CPLMalloc(64 * nXSize);
for (int iLine = 0; iLine < nYSize; iLine++)
{
{
const CPLErr err = GDALRasterIO(hSrcOver, GF_Read, 0, iLine, nXSize,
1, pData, nXSize, 1, eDT, 0, 0);
if (err != CE_None)
CPLError(CE_Failure, CPLE_FileIO,
"GDALRasterIO read failed at %d.", iLine);
}
const CPLErr err =
GDALRasterIO(GDALGetRasterBand(hDstDS, 1), GF_Write, 0, iLine,
nXSize, 1, pData, nXSize, 1, eDT, 0, 0);
if (err != CE_None)
CPLError(CE_Failure, CPLE_FileIO,
"GDALRasterIO write failed at %d.", iLine);
}
CPLFree(pData);
GDALClose(hDstDS);
}
|