QGIS API Documentation  2.4.0-Chugiak
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
qgsbrightnesscontrastfilter.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsbrightnesscontrastfilter.h
3  -------------------
4  begin : February 2013
5  copyright : (C) 2013 by Alexander Bruy
6  email : alexander dot bruy at gmail dot com
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef QGSBRIGHTNESSCONTRASTFILTER_H
19 #define QGSBRIGHTNESSCONTRASTFILTER_H
20 
21 #include "qgsrasterdataprovider.h"
22 #include "qgsrasterinterface.h"
23 
24 class QDomElement;
25 
30 {
31  public:
34 
35  QgsRasterInterface * clone() const;
36 
37  int bandCount() const;
38 
39  QGis::DataType dataType( int bandNo ) const;
40 
41  bool setInput( QgsRasterInterface* input );
42 
43  QgsRasterBlock *block( int bandNo, const QgsRectangle &extent, int width, int height );
44 
45  void setBrightness( int brightness ) { mBrightness = qBound( -255, brightness, 255 ); }
46  int brightness() const { return mBrightness; }
47 
48  void setContrast( int contrast ) { mContrast = qBound( -100, contrast, 100 ); }
49  int contrast() const { return mContrast; }
50 
51  void writeXML( QDomDocument& doc, QDomElement& parentElem ) const;
52 
54  void readXML( const QDomElement& filterElem );
55 
56  private:
58  int adjustColorComponent( int colorComponent, int alpha, int brightness, double contrastFactor ) const;
59 
62 
64  double mContrast;
65 };
66 
67 #endif // QGSBRIGHTNESSCONTRASTFILTER_H
double mContrast
Current contrast coefficient value.
virtual int bandCount() const =0
Get number of bands.
A rectangle specified with double values.
Definition: qgsrectangle.h:35
virtual void readXML(const QDomElement &filterElem)
Sets base class members from xml.
int mBrightness
Current brightness coefficient value.
Raster data container.
virtual void writeXML(QDomDocument &doc, QDomElement &parentElem) const
Write base class members to xml.
virtual QGis::DataType dataType(int bandNo) const =0
Returns data type for the band specified by number.
Base class for processing filters like renderers, reprojector, resampler etc.
virtual bool setInput(QgsRasterInterface *input)
Set input.
virtual QgsRasterInterface * clone() const =0
Clone itself, create deep copy.
Brightness/contrast filter pipe for rasters.
DataType
Raster data types.
Definition: qgis.h:204
virtual QgsRasterBlock * block(int bandNo, const QgsRectangle &extent, int width, int height)=0
Read block of data using given extent and size.