mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
18 lines
458 B
Plaintext
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 );
|
|
};
|