1
0
mirror of https://github.com/qgis/QGIS.git synced 2025-03-24 00:06:24 -04:00
QGIS/python/core/raster/qgslinearminmaxenhancementwithclip.sip

18 lines
458 B
Plaintext

/** \ingroup core
* A linear enhanceContrast enhancement that first clips to min max and then enhanceContrastes
* linearly between min and max.
*/
class QgsLinearMinMaxEnhancementWithClip : QgsContrastEnhancementFunction
{
%TypeHeaderCode
#include <qgslinearminmaxenhancementwithclip.h>
%End
public:
QgsLinearMinMaxEnhancementWithClip( Qgis::DataType, double, double );
int enhance( double );
bool isValueInDisplayableRange( double );
};