/usr/include/qgis/qgscubicrasterresampler.h is in libqgis-dev 2.18.17+dfsg-1.
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 | /***************************************************************************
qgscubicrasterresampler.h
----------------------------
begin : December 2011
copyright : (C) 2011 by Marco Hugentobler
email : marco at sourcepole dot ch
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef QGSCUBICRASTERRESAMPLER_H
#define QGSCUBICRASTERRESAMPLER_H
#include "qgsrasterresampler.h"
#include <QColor>
/** \ingroup core
Cubic Raster Resampler
*/
class CORE_EXPORT QgsCubicRasterResampler: public QgsRasterResampler
{
public:
QgsCubicRasterResampler();
~QgsCubicRasterResampler();
QgsCubicRasterResampler * clone() const override;
void resample( const QImage& srcImage, QImage& dstImage ) override;
QString type() const override { return "cubic"; }
private:
static void xDerivativeMatrix( int nCols, int nRows, double* matrix, const int* colorMatrix );
static void yDerivativeMatrix( int nCols, int nRows, double* matrix, const int* colorMatrix );
void calculateControlPoints( int nCols, int nRows, int currentRow, int currentCol, int* redMatrix, int* greenMatrix, int* blueMatrix,
int* alphaMatrix, double* xDerivativeMatrixRed, double* xDerivativeMatrixGreen, double* xDerivativeMatrixBlue,
double* xDerivativeMatrixAlpha, double* yDerivativeMatrixRed, double* yDerivativeMatrixGreen, double* yDerivativeMatrixBlue,
double* yDerivativeMatrixAlpha );
/** Use cubic curve interpoation at the borders of the raster*/
QRgb curveInterpolation( QRgb pt1, QRgb pt2, double t, double d1red, double d1green, double d1blue, double d1alpha, double d2red, double d2green,
double d2blue, double d2alpha );
static inline double calcBernsteinPolyN3( int i, double t );
static inline int lowerN3( int i );
//creates a QRgb by applying bounds checks
static inline QRgb createPremultipliedColor( const int r, const int g, const int b, const int a );
//control points
//red
double cRed00;
double cRed10;
double cRed20;
double cRed30;
double cRed01;
double cRed11;
double cRed21;
double cRed31;
double cRed02;
double cRed12;
double cRed22;
double cRed32;
double cRed03;
double cRed13;
double cRed23;
double cRed33;
//green
double cGreen00;
double cGreen10;
double cGreen20;
double cGreen30;
double cGreen01;
double cGreen11;
double cGreen21;
double cGreen31;
double cGreen02;
double cGreen12;
double cGreen22;
double cGreen32;
double cGreen03;
double cGreen13;
double cGreen23;
double cGreen33;
//blue
double cBlue00;
double cBlue10;
double cBlue20;
double cBlue30;
double cBlue01;
double cBlue11;
double cBlue21;
double cBlue31;
double cBlue02;
double cBlue12;
double cBlue22;
double cBlue32;
double cBlue03;
double cBlue13;
double cBlue23;
double cBlue33;
//alpha
double cAlpha00;
double cAlpha10;
double cAlpha20;
double cAlpha30;
double cAlpha01;
double cAlpha11;
double cAlpha21;
double cAlpha31;
double cAlpha02;
double cAlpha12;
double cAlpha22;
double cAlpha32;
double cAlpha03;
double cAlpha13;
double cAlpha23;
double cAlpha33;
};
#endif // QGSCUBICRASTERRESAMPLER_H
|