GDAL
gdal_alg.h
Go to the documentation of this file.
1/******************************************************************************
2 * $Id: gdal_alg.h b9ddc19f9ccd776cac9388f260aebc24439f10aa 2018-10-09 11:45:33 +0200 Julien Cabieces $
3 *
4 * Project: GDAL Image Processing Algorithms
5 * Purpose: Prototypes, and definitions for various GDAL based algorithms.
6 * Author: Frank Warmerdam, warmerdam@pobox.com
7 *
8 ******************************************************************************
9 * Copyright (c) 2001, Frank Warmerdam
10 * Copyright (c) 2008-2012, Even Rouault <even dot rouault at mines-paris dot org>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a
13 * copy of this software and associated documentation files (the "Software"),
14 * to deal in the Software without restriction, including without limitation
15 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
16 * and/or sell copies of the Software, and to permit persons to whom the
17 * Software is furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included
20 * in all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
23 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
25 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
28 * DEALINGS IN THE SOFTWARE.
29 ****************************************************************************/
30
31#ifndef GDAL_ALG_H_INCLUDED
32#define GDAL_ALG_H_INCLUDED
33
40#ifndef DOXYGEN_SKIP
41#include "gdal.h"
42#include "cpl_minixml.h"
43#include "ogr_api.h"
44#endif
45
47
48int CPL_DLL CPL_STDCALL GDALComputeMedianCutPCT( GDALRasterBandH hRed,
49 GDALRasterBandH hGreen,
50 GDALRasterBandH hBlue,
51 int (*pfnIncludePixel)(int,int,void*),
52 int nColors,
53 GDALColorTableH hColorTable,
54 GDALProgressFunc pfnProgress,
55 void * pProgressArg );
56
57int CPL_DLL CPL_STDCALL GDALDitherRGB2PCT( GDALRasterBandH hRed,
58 GDALRasterBandH hGreen,
59 GDALRasterBandH hBlue,
60 GDALRasterBandH hTarget,
61 GDALColorTableH hColorTable,
62 GDALProgressFunc pfnProgress,
63 void * pProgressArg );
64
65int CPL_DLL CPL_STDCALL GDALChecksumImage( GDALRasterBandH hBand,
66 int nXOff, int nYOff, int nXSize, int nYSize );
67
68CPLErr CPL_DLL CPL_STDCALL
70 GDALRasterBandH hProximityBand,
71 char **papszOptions,
72 GDALProgressFunc pfnProgress,
73 void * pProgressArg );
74
75CPLErr CPL_DLL CPL_STDCALL
77 GDALRasterBandH hMaskBand,
78 double dfMaxSearchDist,
79 int bDeprecatedOption,
80 int nSmoothingIterations,
81 char **papszOptions,
82 GDALProgressFunc pfnProgress,
83 void * pProgressArg );
84
85CPLErr CPL_DLL CPL_STDCALL
87 GDALRasterBandH hMaskBand,
88 OGRLayerH hOutLayer, int iPixValField,
89 char **papszOptions,
90 GDALProgressFunc pfnProgress,
91 void * pProgressArg );
92
93CPLErr CPL_DLL CPL_STDCALL
95 GDALRasterBandH hMaskBand,
96 OGRLayerH hOutLayer, int iPixValField,
97 char **papszOptions,
98 GDALProgressFunc pfnProgress,
99 void * pProgressArg );
100
101CPLErr CPL_DLL CPL_STDCALL
103 GDALRasterBandH hDstBand,
104 int nSizeThreshold, int nConnectedness,
105 char **papszOptions,
106 GDALProgressFunc pfnProgress,
107 void * pProgressArg );
108
109/*
110 * Warp Related.
111 */
112
113typedef int
114(*GDALTransformerFunc)( void *pTransformerArg,
115 int bDstToSrc, int nPointCount,
116 double *x, double *y, double *z, int *panSuccess );
117
119#define GDAL_GTI2_SIGNATURE "GTI2"
120
121typedef struct {
122 GByte abySignature[4];
123 const char *pszClassName;
124 GDALTransformerFunc pfnTransform;
125 void (*pfnCleanup)( void * pTransformerArg );
126 CPLXMLNode *(*pfnSerialize)( void * pTransformerArg );
127 void* (*pfnCreateSimilar)( void* pTransformerArg, double dfSrcRatioX, double dfSrcRatioY );
128} GDALTransformerInfo;
132void CPL_DLL GDALDestroyTransformer( void *pTransformerArg );
133int CPL_DLL GDALUseTransformer( void *pTransformerArg,
134 int bDstToSrc, int nPointCount,
135 double *x, double *y, double *z,
136 int *panSuccess );
137void* GDALCreateSimilarTransformer( void* psTransformerArg, double dfSrcRatioX, double dfSrcRatioY );
140/* High level transformer for going from image coordinates on one file
141 to image coordinates on another, potentially doing reprojection,
142 utilizing GCPs or using the geotransform. */
143
144void CPL_DLL *
145GDALCreateGenImgProjTransformer( GDALDatasetH hSrcDS, const char *pszSrcWKT,
146 GDALDatasetH hDstDS, const char *pszDstWKT,
147 int bGCPUseOK, double dfGCPErrorThreshold,
148 int nOrder );
149void CPL_DLL *
151 char **papszOptions );
152void CPL_DLL *
153GDALCreateGenImgProjTransformer3( const char *pszSrcWKT,
154 const double *padfSrcGeoTransform,
155 const char *pszDstWKT,
156 const double *padfDstGeoTransform );
158 const double * );
159void CPL_DLL GDALDestroyGenImgProjTransformer( void * );
160int CPL_DLL GDALGenImgProjTransform(
161 void *pTransformArg, int bDstToSrc, int nPointCount,
162 double *x, double *y, double *z, int *panSuccess );
163
164void GDALSetTransformerDstGeoTransform( void *, const double * );
165void GDALGetTransformerDstGeoTransform( void*, double* );
166
167/* Geo to geo reprojection transformer. */
168void CPL_DLL *
169GDALCreateReprojectionTransformer( const char *pszSrcWKT,
170 const char *pszDstWKT );
171void CPL_DLL GDALDestroyReprojectionTransformer( void * );
172int CPL_DLL GDALReprojectionTransform(
173 void *pTransformArg, int bDstToSrc, int nPointCount,
174 double *x, double *y, double *z, int *panSuccess );
175
176/* GCP based transformer ... forward is to georef coordinates */
177void CPL_DLL *
178GDALCreateGCPTransformer( int nGCPCount, const GDAL_GCP *pasGCPList,
179 int nReqOrder, int bReversed );
180
181/* GCP based transformer with refinement of the GCPs ... forward is to georef coordinates */
182void CPL_DLL *
183GDALCreateGCPRefineTransformer( int nGCPCount, const GDAL_GCP *pasGCPList,
184 int nReqOrder, int bReversed, double tolerance, int minimumGcps);
185
186void CPL_DLL GDALDestroyGCPTransformer( void *pTransformArg );
187int CPL_DLL GDALGCPTransform(
188 void *pTransformArg, int bDstToSrc, int nPointCount,
189 double *x, double *y, double *z, int *panSuccess );
190
191/* Thin Plate Spine transformer ... forward is to georef coordinates */
192
193void CPL_DLL *
194GDALCreateTPSTransformer( int nGCPCount, const GDAL_GCP *pasGCPList,
195 int bReversed );
196void CPL_DLL GDALDestroyTPSTransformer( void *pTransformArg );
197int CPL_DLL GDALTPSTransform(
198 void *pTransformArg, int bDstToSrc, int nPointCount,
199 double *x, double *y, double *z, int *panSuccess );
200
202char CPL_DLL ** RPCInfoToMD( GDALRPCInfo *psRPCInfo );
205/* RPC based transformer ... src is pixel/line/elev, dst is long/lat/elev */
206
207void CPL_DLL *
208GDALCreateRPCTransformer( GDALRPCInfo *psRPC, int bReversed,
209 double dfPixErrThreshold,
210 char **papszOptions );
211void CPL_DLL GDALDestroyRPCTransformer( void *pTransformArg );
212int CPL_DLL GDALRPCTransform(
213 void *pTransformArg, int bDstToSrc, int nPointCount,
214 double *x, double *y, double *z, int *panSuccess );
215
216/* Geolocation transformer */
217
218void CPL_DLL *
220 char **papszGeolocationInfo,
221 int bReversed );
222void CPL_DLL GDALDestroyGeoLocTransformer( void *pTransformArg );
223int CPL_DLL GDALGeoLocTransform(
224 void *pTransformArg, int bDstToSrc, int nPointCount,
225 double *x, double *y, double *z, int *panSuccess );
226
227/* Approximate transformer */
228void CPL_DLL *
230 void *pRawTransformerArg, double dfMaxError );
231void CPL_DLL GDALApproxTransformerOwnsSubtransformer( void *pCBData,
232 int bOwnFlag );
233void CPL_DLL GDALDestroyApproxTransformer( void *pApproxArg );
234int CPL_DLL GDALApproxTransform(
235 void *pTransformArg, int bDstToSrc, int nPointCount,
236 double *x, double *y, double *z, int *panSuccess );
237
238int CPL_DLL CPL_STDCALL
240 GDALDatasetH hDstDS,
241 int nBandCount, int *panBandList,
242 GDALTransformerFunc pfnTransform,
243 void *pTransformArg,
244 GDALProgressFunc pfnProgress,
245 void *pProgressArg,
246 char **papszWarpOptions );
247
248CPLErr CPL_DLL CPL_STDCALL
250 GDALTransformerFunc pfnTransformer,
251 void *pTransformArg,
252 double *padfGeoTransformOut,
253 int *pnPixels, int *pnLines );
254CPLErr CPL_DLL CPL_STDCALL
256 GDALTransformerFunc pfnTransformer,
257 void *pTransformArg,
258 double *padfGeoTransformOut,
259 int *pnPixels, int *pnLines,
260 double *padfExtents,
261 int nOptions );
262
264CPLXMLNode CPL_DLL *
265GDALSerializeTransformer( GDALTransformerFunc pfnFunc, void *pTransformArg );
266CPLErr CPL_DLL GDALDeserializeTransformer( CPLXMLNode *psTree,
267 GDALTransformerFunc *ppfnFunc,
268 void **ppTransformArg );
271CPLErr CPL_DLL
273 GDALRasterBandH hYBand,
274 GDALRasterBandH hZBand,
275 GDALTransformerFunc pfnTransformer,
276 void *pTransformArg,
277 GDALProgressFunc pfnProgress,
278 void *pProgressArg,
279 char **papszOptions );
280
281/* -------------------------------------------------------------------- */
282/* Contour Line Generation */
283/* -------------------------------------------------------------------- */
284
286typedef CPLErr (*GDALContourWriter)( double dfLevel, int nPoints,
287 double *padfX, double *padfY, void * );
288
291
293GDAL_CG_Create( int nWidth, int nHeight,
294 int bNoDataSet, double dfNoDataValue,
295 double dfContourInterval, double dfContourBase,
296 GDALContourWriter pfnWriter, void *pCBData );
298 double *padfScanline );
299void CPL_DLL GDAL_CG_Destroy( GDALContourGeneratorH hCG );
300
302typedef struct
303{
304 void *hLayer;
305
306 double adfGeoTransform[6];
307
308 int nElevField;
309 int nElevFieldMin;
310 int nElevFieldMax;
311 int nIDField;
312 int nNextID;
313} OGRContourWriterInfo;
314
315CPLErr CPL_DLL
316OGRContourWriter( double, int, double *, double *, void *pInfo );
319CPLErr CPL_DLL
321 double dfContourInterval, double dfContourBase,
322 int nFixedLevelCount, double *padfFixedLevels,
323 int bUseNoData, double dfNoDataValue,
324 void *hLayer, int iIDField, int iElevField,
325 GDALProgressFunc pfnProgress, void *pProgressArg );
326
327CPLErr CPL_DLL
328GDALContourGenerateEx( GDALRasterBandH hBand, void *hLayer,
329 CSLConstList options,
330 GDALProgressFunc pfnProgress, void *pProgressArg );
331
332/************************************************************************/
333/* Rasterizer API - geometries burned into GDAL raster. */
334/************************************************************************/
335
336CPLErr CPL_DLL
338 int nBandCount, int *panBandList,
339 int nGeomCount, OGRGeometryH *pahGeometries,
340 GDALTransformerFunc pfnTransformer,
341 void *pTransformArg,
342 double *padfGeomBurnValue,
343 char **papszOptions,
344 GDALProgressFunc pfnProgress,
345 void * pProgressArg );
346CPLErr CPL_DLL
348 int nBandCount, int *panBandList,
349 int nLayerCount, OGRLayerH *pahLayers,
350 GDALTransformerFunc pfnTransformer,
351 void *pTransformArg,
352 double *padfLayerBurnValues,
353 char **papszOptions,
354 GDALProgressFunc pfnProgress,
355 void *pProgressArg );
356
357CPLErr CPL_DLL
358GDALRasterizeLayersBuf( void *pData, int nBufXSize, int nBufYSize,
359 GDALDataType eBufType, int nPixelSpace, int nLineSpace,
360 int nLayerCount, OGRLayerH *pahLayers,
361 const char *pszDstProjection,
362 double *padfDstGeoTransform,
363 GDALTransformerFunc pfnTransformer,
364 void *pTransformArg, double dfBurnValue,
365 char **papszOptions, GDALProgressFunc pfnProgress,
366 void *pProgressArg );
367
368/************************************************************************/
369/* Gridding interface. */
370/************************************************************************/
371
389
391typedef struct
392{
394 double dfPower;
402 double dfRadius1;
404 double dfRadius2;
409 double dfAngle;
426
428typedef struct
429{
431 double dfPower;
433 double dfRadius;
436
453
455typedef struct
456{
458 double dfRadius1;
460 double dfRadius2;
465 double dfAngle;
475
477typedef struct
478{
480 double dfRadius1;
482 double dfRadius2;
487 double dfAngle;
491
493typedef struct
494{
496 double dfRadius1;
498 double dfRadius2;
503 double dfAngle;
513
515typedef struct
516{
522 double dfRadius;
526
527CPLErr CPL_DLL
529 const double *, const double *, const double *,
530 double, double, double, double,
531 GUInt32, GUInt32, GDALDataType, void *,
532 GDALProgressFunc, void *);
533
536
537GDALGridContext CPL_DLL*
538GDALGridContextCreate( GDALGridAlgorithm eAlgorithm, const void *poOptions,
539 GUInt32 nPoints,
540 const double *padfX, const double *padfY, const double *padfZ,
541 int bCallerWillKeepPointArraysAlive );
542
543void CPL_DLL GDALGridContextFree(GDALGridContext* psContext);
544
546 double dfXMin, double dfXMax, double dfYMin, double dfYMax,
547 GUInt32 nXSize, GUInt32 nYSize, GDALDataType eType, void *pData,
548 GDALProgressFunc pfnProgress, void *pProgressArg );
549
550GDAL_GCP CPL_DLL *
552 GDALDatasetH hSecondImage,
553 char **papszOptions,
554 int *pnGCPCount );
555
556/************************************************************************/
557/* Delaunay triangulation interface. */
558/************************************************************************/
559
561typedef struct
562{
563 int anVertexIdx[3];
564 int anNeighborIdx[3];
565 /* anNeighborIdx[k] is the triangle to the opposite side */
566 /* of the opposite segment of anVertexIdx[k] */
568
576typedef struct
577{
578 double dfMul1X;
579 double dfMul1Y;
580 double dfMul2X;
581 double dfMul2Y;
582 double dfCstX;
583 double dfCstY;
585
587typedef struct
588{
593
594int CPL_DLL GDALHasTriangulation(void);
595
597 const double* padfX,
598 const double* padfY);
600 GDALTriangulation* psDT,
601 const double* padfX,
602 const double* padfY);
604 const GDALTriangulation* psDT,
605 int nFacetIdx,
606 double dfX,
607 double dfY,
608 double* pdfL1,
609 double* pdfL2,
610 double* pdfL3);
612 double dfX,
613 double dfY,
614 int* panOutputFacetIdx );
616 int nFacetIdx,
617 double dfX,
618 double dfY,
619 int* panOutputFacetIdx );
620void CPL_DLL GDALTriangulationFree(GDALTriangulation* psDT);
621
623// GDAL internal use only
624void GDALTriangulationTerminate(void);
628 const char* pszProj4Geoidgrids,
629 int* pbError );
630
632 GDALDatasetH hGridDataset,
633 int bInverse,
634 double dfSrcUnitToMeter,
635 double dfDstUnitToMeter,
636 const char* const* papszOptions );
637
639
640#endif /* ndef GDAL_ALG_H_INCLUDED */
CPLErr
Error category.
Definition: cpl_error.h:53
Definitions for CPL mini XML Parser/Serializer.
#define CPL_C_END
Macro to end a block of C symbols.
Definition: cpl_port.h:339
#define CPL_C_START
Macro to start a block of C symbols.
Definition: cpl_port.h:337
unsigned int GUInt32
Unsigned int32 type.
Definition: cpl_port.h:207
char ** CSLConstList
Type of a constant null-terminated list of nul terminated strings.
Definition: cpl_port.h:1186
unsigned char GByte
Unsigned byte type.
Definition: cpl_port.h:215
Public (C callable) GDAL entry points.
GDALDataType
Definition: gdal.h:60
void * GDALDatasetH
Opaque type used for the C bindings of the C++ GDALDataset class.
Definition: gdal.h:255
void * GDALRasterBandH
Opaque type used for the C bindings of the C++ GDALRasterBand class.
Definition: gdal.h:258
void * GDALColorTableH
Opaque type used for the C bindings of the C++ GDALColorTable class.
Definition: gdal.h:264
CPLErr GDALContourGenerateEx(GDALRasterBandH hBand, void *hLayer, CSLConstList options, GDALProgressFunc pfnProgress, void *pProgressArg)
Create vector contours from raster DEM.
Definition: contour.cpp:523
void * GDALCreateGeoLocTransformer(GDALDatasetH hBaseDS, char **papszGeolocationInfo, int bReversed)
Create GeoLocation transformer.
Definition: gdalgeoloc.cpp:649
struct GDALGridContext GDALGridContext
Grid context opaque type.
Definition: gdal_alg.h:535
CPLErr GDALFillNodata(GDALRasterBandH hTargetBand, GDALRasterBandH hMaskBand, double dfMaxSearchDist, int bDeprecatedOption, int nSmoothingIterations, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Fill selected raster regions by interpolation from the edges.
Definition: rasterfill.cpp:409
int GDALGenImgProjTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Perform general image reprojection transformation.
Definition: gdaltransformer.cpp:1966
GDALTriangulation * GDALTriangulationCreateDelaunay(int nPoints, const double *padfX, const double *padfY)
Computes a Delaunay triangulation of the passed points.
Definition: delaunay.c:118
GDALContourGeneratorH GDAL_CG_Create(int nWidth, int nHeight, int bNoDataSet, double dfNoDataValue, double dfContourInterval, double dfContourBase, GDALContourWriter pfnWriter, void *pCBData)
Create contour generator.
Definition: contour.cpp:703
void * GDALCreateGCPRefineTransformer(int nGCPCount, const GDAL_GCP *pasGCPList, int nReqOrder, int bReversed, double tolerance, int minimumGcps)
Create GCP based polynomial transformer, with a tolerance threshold to discard GCPs that transform ba...
Definition: gdal_crs.c:344
void * GDALCreateReprojectionTransformer(const char *pszSrcWKT, const char *pszDstWKT)
Create reprojection transformer.
Definition: gdaltransformer.cpp:2380
void GDALSetGenImgProjTransformerDstGeoTransform(void *, const double *)
Set GenImgProj output geotransform.
Definition: gdaltransformer.cpp:1897
void GDALDestroyGeoLocTransformer(void *pTransformArg)
Destroy GeoLocation transformer.
Definition: gdalgeoloc.cpp:819
void GDALGridContextFree(GDALGridContext *psContext)
Free a context used created by GDALGridContextCreate()
Definition: gdalgrid.cpp:2129
void GDALTriangulationFree(GDALTriangulation *psDT)
Free a triangulation.
Definition: delaunay.c:275
void * GDALCreateGenImgProjTransformer(GDALDatasetH hSrcDS, const char *pszSrcWKT, GDALDatasetH hDstDS, const char *pszDstWKT, int bGCPUseOK, double dfGCPErrorThreshold, int nOrder)
Create image to image transformer.
Definition: gdaltransformer.cpp:1070
CPLErr GDALGridCreate(GDALGridAlgorithm, const void *, GUInt32, const double *, const double *, const double *, double, double, double, double, GUInt32, GUInt32, GDALDataType, void *, GDALProgressFunc, void *)
Create regular grid from the scattered data.
Definition: gdalgrid.cpp:2422
int GDALDitherRGB2PCT(GDALRasterBandH hRed, GDALRasterBandH hGreen, GDALRasterBandH hBlue, GDALRasterBandH hTarget, GDALColorTableH hColorTable, GDALProgressFunc pfnProgress, void *pProgressArg)
24bit to 8bit conversion with dithering.
Definition: gdaldither.cpp:141
int GDALTriangulationComputeBarycentricCoordinates(const GDALTriangulation *psDT, int nFacetIdx, double dfX, double dfY, double *pdfL1, double *pdfL2, double *pdfL3)
Computes the barycentric coordinates of a point.
Definition: delaunay.c:378
CPLErr GDALSieveFilter(GDALRasterBandH hSrcBand, GDALRasterBandH hMaskBand, GDALRasterBandH hDstBand, int nSizeThreshold, int nConnectedness, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Removes small raster polygons.
Definition: gdalsievefilter.cpp:200
GDALDatasetH GDALApplyVerticalShiftGrid(GDALDatasetH hSrcDataset, GDALDatasetH hGridDataset, int bInverse, double dfSrcUnitToMeter, double dfDstUnitToMeter, const char *const *papszOptions)
Apply a vertical shift grid to a source (DEM typically) dataset.
Definition: gdalapplyverticalshiftgrid.cpp:379
CPLErr GDALPolygonize(GDALRasterBandH hSrcBand, GDALRasterBandH hMaskBand, OGRLayerH hOutLayer, int iPixValField, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Create polygon coverage from raster data.
Definition: polygonize.cpp:826
void GDALDestroyGCPTransformer(void *pTransformArg)
Destroy GCP transformer.
Definition: gdal_crs.c:371
CPLErr GDALRasterizeGeometries(GDALDatasetH hDS, int nBandCount, int *panBandList, int nGeomCount, OGRGeometryH *pahGeometries, GDALTransformerFunc pfnTransformer, void *pTransformArg, double *padfGeomBurnValue, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Burn geometries into raster.
Definition: gdalrasterize.cpp:630
GDALGridAlgorithm
Gridding Algorithms.
Definition: gdal_alg.h:373
@ GGA_MetricMinimum
Definition: gdal_alg.h:377
@ GGA_InverseDistanceToAPowerNearestNeighbor
Definition: gdal_alg.h:387
@ GGA_InverseDistanceToAPower
Definition: gdal_alg.h:374
@ GGA_MetricAverageDistancePts
Definition: gdal_alg.h:383
@ GGA_MetricMaximum
Definition: gdal_alg.h:378
@ GGA_NearestNeighbor
Definition: gdal_alg.h:376
@ GGA_MetricAverageDistance
Definition: gdal_alg.h:381
@ GGA_MovingAverage
Definition: gdal_alg.h:375
@ GGA_MetricCount
Definition: gdal_alg.h:380
@ GGA_MetricRange
Definition: gdal_alg.h:379
@ GGA_Linear
Definition: gdal_alg.h:385
void GDALDestroyGenImgProjTransformer(void *)
GenImgProjTransformer deallocator.
Definition: gdaltransformer.cpp:1928
int GDALRPCTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
RPC transform.
Definition: gdal_rpc.cpp:1915
int GDALComputeMedianCutPCT(GDALRasterBandH hRed, GDALRasterBandH hGreen, GDALRasterBandH hBlue, int(*pfnIncludePixel)(int, int, void *), int nColors, GDALColorTableH hColorTable, GDALProgressFunc pfnProgress, void *pProgressArg)
Compute optimal PCT for RGB image.
Definition: gdalmediancut.cpp:147
int GDALTriangulationFindFacetBruteForce(const GDALTriangulation *psDT, double dfX, double dfY, int *panOutputFacetIdx)
Returns the index of the triangle that contains the point by iterating over all triangles.
Definition: delaunay.c:426
GDALDatasetH GDALOpenVerticalShiftGrid(const char *pszProj4Geoidgrids, int *pbError)
Load proj.4 geoidgrids as GDAL dataset.
Definition: gdalapplyverticalshiftgrid.cpp:669
void GDAL_CG_Destroy(GDALContourGeneratorH hCG)
Destroy contour generator.
Definition: contour.cpp:737
void GDALApproxTransformerOwnsSubtransformer(void *pCBData, int bOwnFlag)
Set bOwnSubtransformer flag.
Definition: gdaltransformer.cpp:2767
int GDALApproxTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Perform approximate transformation.
Definition: gdaltransformer.cpp:3106
CPLErr GDALFPolygonize(GDALRasterBandH hSrcBand, GDALRasterBandH hMaskBand, OGRLayerH hOutLayer, int iPixValField, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Create polygon coverage from raster data.
Definition: polygonize.cpp:904
CPLErr GDALGridContextProcess(GDALGridContext *psContext, double dfXMin, double dfXMax, double dfYMin, double dfYMax, GUInt32 nXSize, GUInt32 nYSize, GDALDataType eType, void *pData, GDALProgressFunc pfnProgress, void *pProgressArg)
Do the gridding of a window of a raster.
Definition: gdalgrid.cpp:2183
int(* GDALTransformerFunc)(void *pTransformerArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Definition: gdal_alg.h:114
GDALGridContext * GDALGridContextCreate(GDALGridAlgorithm eAlgorithm, const void *poOptions, GUInt32 nPoints, const double *padfX, const double *padfY, const double *padfZ, int bCallerWillKeepPointArraysAlive)
Creates a context to do regular gridding from the scattered data.
Definition: gdalgrid.cpp:1733
CPLErr GDALSuggestedWarpOutput(GDALDatasetH hSrcDS, GDALTransformerFunc pfnTransformer, void *pTransformArg, double *padfGeoTransformOut, int *pnPixels, int *pnLines)
Suggest output file size.
Definition: gdaltransformer.cpp:177
CPLErr GDALComputeProximity(GDALRasterBandH hSrcBand, GDALRasterBandH hProximityBand, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Compute the proximity of all pixels in the image to a set of pixels in the source image.
Definition: gdalproximity.cpp:112
CPLErr GDALTransformGeolocations(GDALRasterBandH hXBand, GDALRasterBandH hYBand, GDALRasterBandH hZBand, GDALTransformerFunc pfnTransformer, void *pTransformArg, GDALProgressFunc pfnProgress, void *pProgressArg, char **papszOptions)
Transform locations held in bands.
Definition: gdaltransformgeolocs.cpp:68
void GDALGetTransformerDstGeoTransform(void *, double *)
Get ApproxTransformer or GenImgProj output geotransform.
Definition: gdaltransformer.cpp:3750
CPLErr GDALSuggestedWarpOutput2(GDALDatasetH hSrcDS, GDALTransformerFunc pfnTransformer, void *pTransformArg, double *padfGeoTransformOut, int *pnPixels, int *pnLines, double *padfExtents, int nOptions)
Suggest output file size.
Definition: gdaltransformer.cpp:354
GDAL_GCP * GDALComputeMatchingPoints(GDALDatasetH hFirstImage, GDALDatasetH hSecondImage, char **papszOptions, int *pnGCPCount)
GDALComputeMatchingPoints.
Definition: gdalmatching.cpp:188
CPLErr GDAL_CG_FeedLine(GDALContourGeneratorH hCG, double *padfScanline)
Feed a line to the contour generator.
Definition: contour.cpp:725
int GDALTriangulationComputeBarycentricCoefficients(GDALTriangulation *psDT, const double *padfX, const double *padfY)
Computes barycentric coefficients for each triangles of the triangulation.
Definition: delaunay.c:301
int GDALGCPTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Transforms point based on GCP derived polynomial model.
Definition: gdal_crs.c:415
void * GDALCreateRPCTransformer(GDALRPCInfo *psRPC, int bReversed, double dfPixErrThreshold, char **papszOptions)
Create an RPC based transformer.
Definition: gdal_rpc.cpp:762
void GDALDestroyApproxTransformer(void *pApproxArg)
Cleanup approximate transformer.
Definition: gdaltransformer.cpp:2788
void * GDALCreateGenImgProjTransformer3(const char *pszSrcWKT, const double *padfSrcGeoTransform, const char *pszDstWKT, const double *padfDstGeoTransform)
Create image to image transformer.
Definition: gdaltransformer.cpp:1789
int GDALHasTriangulation(void)
Returns if GDAL is built with Delaunay triangulation support.
Definition: delaunay.c:95
CPLErr(* GDALContourWriter)(double dfLevel, int nPoints, double *padfX, double *padfY, void *)
Contour writer callback type.
Definition: gdal_alg.h:286
CPLErr GDALRasterizeLayersBuf(void *pData, int nBufXSize, int nBufYSize, GDALDataType eBufType, int nPixelSpace, int nLineSpace, int nLayerCount, OGRLayerH *pahLayers, const char *pszDstProjection, double *padfDstGeoTransform, GDALTransformerFunc pfnTransformer, void *pTransformArg, double dfBurnValue, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Burn geometries from the specified list of layer into raster.
Definition: gdalrasterize.cpp:1448
int GDALTPSTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Transforms point based on GCP derived polynomial model.
Definition: gdal_tps.cpp:358
int GDALChecksumImage(GDALRasterBandH hBand, int nXOff, int nYOff, int nXSize, int nYSize)
Compute checksum for image region.
Definition: gdalchecksum.cpp:66
void GDALSetTransformerDstGeoTransform(void *, const double *)
Set ApproxTransformer or GenImgProj output geotransform.
Definition: gdaltransformer.cpp:3726
void * GDALContourGeneratorH
Contour generator opaque type.
Definition: gdal_alg.h:290
CPLErr GDALContourGenerate(GDALRasterBandH hBand, double dfContourInterval, double dfContourBase, int nFixedLevelCount, double *padfFixedLevels, int bUseNoData, double dfNoDataValue, void *hLayer, int iIDField, int iElevField, GDALProgressFunc pfnProgress, void *pProgressArg)
Create vector contours from raster DEM.
Definition: contour.cpp:310
void GDALDestroyRPCTransformer(void *pTransformArg)
Destroy RPC tranformer.
Definition: gdal_rpc.cpp:1008
CPLErr GDALRasterizeLayers(GDALDatasetH hDS, int nBandCount, int *panBandList, int nLayerCount, OGRLayerH *pahLayers, GDALTransformerFunc pfnTransformer, void *pTransformArg, double *padfLayerBurnValues, char **papszOptions, GDALProgressFunc pfnProgress, void *pProgressArg)
Burn geometries from the specified list of layers into raster.
Definition: gdalrasterize.cpp:1052
void * GDALCreateGenImgProjTransformer2(GDALDatasetH hSrcDS, GDALDatasetH hDstDS, char **papszOptions)
Create image to image transformer.
Definition: gdaltransformer.cpp:1301
int GDALSimpleImageWarp(GDALDatasetH hSrcDS, GDALDatasetH hDstDS, int nBandCount, int *panBandList, GDALTransformerFunc pfnTransform, void *pTransformArg, GDALProgressFunc pfnProgress, void *pProgressArg, char **papszWarpOptions)
Perform simple image warp.
Definition: gdalsimplewarp.cpp:230
void GDALDestroyReprojectionTransformer(void *)
Destroy reprojection transformation.
Definition: gdaltransformer.cpp:2450
void * GDALCreateGCPTransformer(int nGCPCount, const GDAL_GCP *pasGCPList, int nReqOrder, int bReversed)
Create GCP based polynomial transformer.
Definition: gdal_crs.c:334
int GDALReprojectionTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Perform reprojection transformation.
Definition: gdaltransformer.cpp:2481
void * GDALCreateApproxTransformer(GDALTransformerFunc pfnRawTransformer, void *pRawTransformerArg, double dfMaxError)
Create an approximating transformer.
Definition: gdaltransformer.cpp:2724
int GDALGeoLocTransform(void *pTransformArg, int bDstToSrc, int nPointCount, double *x, double *y, double *z, int *panSuccess)
Use GeoLocation transformer.
Definition: gdalgeoloc.cpp:850
int GDALTriangulationFindFacetDirected(const GDALTriangulation *psDT, int nFacetIdx, double dfX, double dfY, int *panOutputFacetIdx)
Returns the index of the triangle that contains the point by walking in the triangulation.
Definition: delaunay.c:521
void * GDALCreateTPSTransformer(int nGCPCount, const GDAL_GCP *pasGCPList, int bReversed)
Create Thin Plate Spline transformer from GCPs.
Definition: gdal_tps.cpp:144
void GDALDestroyTPSTransformer(void *pTransformArg)
Destroy TPS transformer.
Definition: gdal_tps.cpp:313
C API and defines for OGRFeature, OGRGeometry, and OGRDataSource related classes.
void * OGRGeometryH
Opaque type for a geometry.
Definition: ogr_api.h:60
void * OGRLayerH
Opaque type for a layer (OGRLayer)
Definition: ogr_api.h:508
Document node structure.
Definition: cpl_minixml.h:67
Data metrics method control options.
Definition: gdal_alg.h:494
double dfRadius2
Definition: gdal_alg.h:498
double dfAngle
Definition: gdal_alg.h:503
double dfNoDataValue
Definition: gdal_alg.h:511
double dfRadius1
Definition: gdal_alg.h:496
GUInt32 nMinPoints
Definition: gdal_alg.h:509
Inverse distance to a power, with nearest neighbour search, control options.
Definition: gdal_alg.h:429
GUInt32 nMinPoints
Definition: gdal_alg.h:449
double dfNoDataValue
Definition: gdal_alg.h:451
GUInt32 nMaxPoints
Definition: gdal_alg.h:443
double dfSmoothing
Definition: gdal_alg.h:435
Inverse distance to a power method control options.
Definition: gdal_alg.h:392
GUInt32 nMinPoints
Definition: gdal_alg.h:422
double dfPower
Definition: gdal_alg.h:394
double dfRadius2
Definition: gdal_alg.h:404
double dfNoDataValue
Definition: gdal_alg.h:424
double dfSmoothing
Definition: gdal_alg.h:396
double dfAngle
Definition: gdal_alg.h:409
double dfRadius1
Definition: gdal_alg.h:402
GUInt32 nMaxPoints
Definition: gdal_alg.h:416
double dfAnisotropyRatio
Definition: gdal_alg.h:398
double dfAnisotropyAngle
Definition: gdal_alg.h:400
Linear method control options.
Definition: gdal_alg.h:516
double dfNoDataValue
Definition: gdal_alg.h:524
double dfRadius
Definition: gdal_alg.h:522
Moving average method control options.
Definition: gdal_alg.h:456
double dfRadius1
Definition: gdal_alg.h:458
double dfNoDataValue
Definition: gdal_alg.h:473
double dfAngle
Definition: gdal_alg.h:465
GUInt32 nMinPoints
Definition: gdal_alg.h:471
double dfRadius2
Definition: gdal_alg.h:460
Nearest neighbor method control options.
Definition: gdal_alg.h:478
double dfNoDataValue
Definition: gdal_alg.h:489
double dfRadius2
Definition: gdal_alg.h:482
double dfAngle
Definition: gdal_alg.h:487
double dfRadius1
Definition: gdal_alg.h:480
Structure to store Rational Polynomial Coefficients / Rigorous Projection Model.
Definition: gdal.h:1013
Triangle barycentric coefficients.
Definition: gdal_alg.h:577
double dfCstY
dfCstY
Definition: gdal_alg.h:583
double dfCstX
dfCstX
Definition: gdal_alg.h:582
double dfMul2Y
dfMul2Y
Definition: gdal_alg.h:581
double dfMul1Y
dfMul1Y
Definition: gdal_alg.h:579
double dfMul2X
dfMul2X
Definition: gdal_alg.h:580
double dfMul1X
dfMul1X
Definition: gdal_alg.h:578
Triangle fact.
Definition: gdal_alg.h:562
Triangulation structure.
Definition: gdal_alg.h:588
GDALTriBarycentricCoefficients * pasFacetCoefficients
arra of nFacets barycentric coefficients
Definition: gdal_alg.h:591
int nFacets
number of facets
Definition: gdal_alg.h:589
GDALTriFacet * pasFacets
array of nFacets facets
Definition: gdal_alg.h:590
Ground Control Point.
Definition: gdal.h:561

Generated for GDAL by doxygen 1.9.4.