QGIS/python/core/auto_generated/raster/qgscubicrasterresampler.sip.in
Nyall Dawson 13e9dd727f Deprecate old QgsRasterResampler interface, and add a new interface
which doesn't require pre-allocation of a temporary QImage

The existing interface is very inefficient for the bilinear resampler,
because it requires allocation of a temporary QImage just to pass
the desired height and width to the resampler...
2019-10-31 12:19:59 +10:00

49 lines
1.5 KiB
Plaintext

/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgscubicrasterresampler.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class QgsCubicRasterResampler: QgsRasterResamplerV2
{
%Docstring
Cubic Raster Resampler
%End
%TypeHeaderCode
#include "qgscubicrasterresampler.h"
%End
public:
QgsCubicRasterResampler();
%Docstring
Constructor for QgsCubicRasterResampler.
%End
virtual QgsCubicRasterResampler *clone() const /Factory/;
virtual QImage resampleV2( const QImage &source, const QSize &size );
virtual void resample( const QImage &srcImage, QImage &dstImage );
virtual QString type() const;
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/core/raster/qgscubicrasterresampler.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/