/usr/include/spatialite/control_points.h is in libspatialite-dev 4.3.0a-5build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
control_points.h -- Gaia implementation of RMSE and TPS Control Points
version 4.3, 2015 May 5
Author: Sandro Furieri a.furieri@lqt.it
------------------------------------------------------------------------------
Version: MPL 1.1/GPL 2.0/LGPL 2.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Original Code is the SpatiaLite library
The Initial Developer of the Original Code is Alessandro Furieri
Portions created by the Initial Developer are Copyright (C) 2008-2015
the Initial Developer. All Rights Reserved.
Contributor(s):
Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable instead
of those above. If you wish to allow use of your version of this file only
under the terms of either the GPL or the LGPL, and not to allow others to
use your version of this file under the terms of the MPL, indicate your
decision by deleting the provisions above and replace them with the notice
and other provisions required by the GPL or the LGPL. If you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
*/
/**
\file control_points.h
Auxiliary/helper functions
*/
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#ifdef DLL_EXPORT
#define GAIACP_DECLARE __declspec(dllexport)
#else
#define GAIACP_DECLARE extern
#endif
#endif
#ifndef _GAIACP_H
#ifndef DOXYGEN_SHOULD_SKIP_THIS
#define _GAIACP_H
#endif
#ifdef __cplusplus
extern "C"
{
#endif
/**
Typedef for GaiaControPoints object (opaque, hidden)
\sa GaiaControlPointsPtr
*/
typedef struct opaque_control_points GaiaControlPoints;
/**
Typedef for GaiaControPointsPtr object pointer (opaque, hidden)
\sa GaiaControlPoints
*/
typedef GaiaControlPoints *GaiaControlPointsPtr;
/**
Typedef for GaiaPolynomialCoeffs object (opaque, hidden)
\sa GaiaPolynomialCoeffsPtr
*/
typedef struct priv_polynomial_coeffs GaiaPolynomialCoeffs;
/**
Typedef for GaiaPolynomialCoeffsPtr object pointer (opaque, hidden)
\sa GaiaPolynomialCoeffs
*/
typedef GaiaPolynomialCoeffs *GaiaPolynomialCoeffsPtr;
/* function prototypes */
/**
Creates a Control Points container (opaque object)
\param allocation_incr how many Control Points should be allocated
every time that necessity arises to increment the internal storage
\param has3d true if the Control Points are all expected to be 3D
\param order polynomial order: 1 or 2 or 3
\param tps true if the solution method must be Thin Plate Spline
\return the handle of the container object, or NULL on failure
\sa gaiaFreeControlPoints, gaiaAddControlPoint3D, gaiaAddControlPoint2D,
gaiaAffineFromControlPoints
\note you must properly destroy the container object when it
isn't any longer used.
*/
GAIACP_DECLARE GaiaControlPointsPtr gaiaCreateControlPoints (int
allocation_incr,
int has3d,
int order,
int tps);
/**
Destroys a Control Points container (opaque object)
\param cp_handle the handle identifying the container object
(returned by a previous call to gaiaCreateControlPoints).
\sa gaiaCreateControlPoints
*/
GAIACP_DECLARE void gaiaFreeControlPoints (GaiaControlPointsPtr cp_handle);
/**
Add a further Control Point 3D to the container (opaque object)
\param cp_handle the handle identifying the container object
(returned by a previous call to gaiaCreateControlPoints).
\param x0 X coordinate of the first Point.
\param y0 Y coordinate of the first Point.
\param z0 Z coordinate of the first Point.
\param x1 X coordinate of the second Point.
\param y1 Y coordinate of the second Point.
\param z1 Z coordinate of the second Point.
\return 0 on failure: any other different value on success.
\sa gaiaCreateControlPoints, gaiaAddControlPoint2D
*/
GAIACP_DECLARE int gaiaAddControlPoint3D (GaiaControlPointsPtr cp_handle,
double x0, double y0, double z0,
double x1, double y1, double z1);
/**
Add a further Control Point 2D to the container (opaque object)
\param cp_handle the handle identifying the container object
(returned by a previous call to gaiaCreateControlPoints).
\param x0 X coordinate of the first Point.
\param y0 Y coordinate of the first Point.
\param x1 X coordinate of the second Point.
\param y1 Y coordinate of the second Point.
\return 0 on failure: any other different value on success.
\sa gaiaCreateControlPoints, gaiaAddControlPoint3D
*/
GAIACP_DECLARE int gaiaAddControlPoint2D (GaiaControlPointsPtr cp_handle,
double x0, double y0, double x1,
double y1);
/**
Resolves a Control Point set by computing an Affine Transform Matrix
\param cp_handle the handle identifying the container object
(returned by a previous call to gaiaCreateControlPoints).
\param blob on completion this variable will contain a BLOB-encoded
Polynomial coeffs object
\param blob_sz on completion this variable will contain the BLOB's size
(in bytes)
\return 0 on failure: any other different value on success.
\sa gaiaCreateControlPoints, gaiaPolynomialIsValid, gaiaPolynomialAsText,
gaiaPolynomialTransformGeometry
*/
GAIACP_DECLARE int gaiaCreatePolynomialCoeffs (GaiaControlPointsPtr
cp_handle,
unsigned char **blob,
int *blob_sz);
/**
Testing a BLOB-Polynomial for validity
\param blob pointer to a BLOB-encoded Polynomial coeffs object
\param blob_sz BLOB's size (in bytes)
\return TRUE if the BLOB really is of the BLOB-Polynomial type; FALSE if not.
\sa gaiaCreatePolynomialCoeffs, gaiaPolynomialAsText
*/
GAIACP_DECLARE int gaiaPolynomialIsValid (const unsigned char *blob,
int blob_sz);
/**
Printing a textual represention from a BLOB-Matrix
\param blob pointer to a BLOB-encoded Polynomial coeffs object
\param blob_sz BLOB's size (in bytes)
\return a text string; NULL on failure.
\sa gaiaCreateControlPoints, gaiaPolynomialIsValid,
gaiaPolynomialTransformGeometry
\note you are responsible to destroy (before or after) any text
string returned by this function by calling sqlite3_free().
*/
GAIACP_DECLARE char *gaiaPolynomialAsText (const unsigned char *blob,
int blob_sz);
/**
Transforming a Geometry accordingly to an Affine Transform Matrix
\param geom the input Geometry
\param blob pointer to a BLOB-encoded Polynomial coeffs object
\param blob_sz BLOB's size (in bytes)
\return 0 pointer to the transformed Geometry or NULL on failure.
\sa gaiaCreateControlPoints, gaiaPolynomialIsValid,
gaiaPolynomialAsText
\note you are responsible to destroy (before or after) any Geometry
returned by this function.
*/
GAIACP_DECLARE gaiaGeomCollPtr
gaiaPolynomialTransformGeometry (gaiaGeomCollPtr geom,
const unsigned char *blob,
int blob_sz);
/**
Converts a Polynomial coeffs object into an Affine Transsform Matrix
\param iblob pointer to a BLOB-encoded Polynomial coeffs object
\param iblob_sz BLOB's size (in bytes)
\param oblob on completion this variable will contain a BLOB-encoded
Affine Transform Matrix object
\param oblob_sz on completion this variable will contain the BLOB's size
(in bytes)
\return 0 on failure: any other different value on success.
\sa gaiaCreateControlPoints, gaiaPolynomialIsValid, gaiaPolynomialAsText,
gaiaPolynomialTransformGeometry, gaiaPolynomialToMatrix
*/
GAIACP_DECLARE int gaiaPolynomialToMatrix (const unsigned char *iblob,
int iblob_sz,
unsigned char **oblob,
int *oblob_sz);
#ifdef __cplusplus
}
#endif
#endif /* _GAIACP_H */
|