21 #include <QDomDocument>
22 #include <QDomElement>
27 , mColorizeColor( QColor::fromRgb( 255, 128, 128 ) )
102 QgsDebugMsg( QStringLiteral(
"Unknown input data type" ) );
116 std::unique_ptr< QgsRasterBlock > outputBlock(
new QgsRasterBlock() );
119 return outputBlock.release();
124 std::unique_ptr< QgsRasterBlock > inputBlock(
mInput->
block( bandNumber,
extent, width, height, feedback ) );
125 if ( !inputBlock || inputBlock->isEmpty() )
127 QgsDebugMsg( QStringLiteral(
"No raster data!" ) );
128 return outputBlock.release();
131 if ( !mInvertColors && mSaturation == 0 && mGrayscaleMode ==
GrayscaleOff && !mColorizeOn )
134 return inputBlock.release();
139 return outputBlock.release();
143 QRgb myNoDataColor = qRgba( 0, 0, 0, 0 );
148 double alphaFactor = 1.0;
152 if ( inputBlock->color( i ) == myNoDataColor )
154 outputBlock->setColor( i, myNoDataColor );
158 myRgb = inputBlock->color( i );
159 myColor = QColor( myRgb );
162 alpha = qAlpha( myRgb );
167 outputBlock->setColor( i, myRgb );
172 myColor.getRgb( &r, &g, &b );
174 if ( mInvertColors || alpha != 255 )
186 alphaFactor = alpha / 255.;
191 myColor = QColor::fromRgb( r, g, b );
194 myColor.getHsl( &h, &s, &l );
197 if ( ( mGrayscaleMode !=
GrayscaleOff ) || ( mSaturationScale != 1 ) )
199 processSaturation( r, g, b, h, s, l );
205 processColorization( r, g, b, h, s, l );
217 outputBlock->setColor( i, qRgba( r, g, b, alpha ) );
220 return outputBlock.release();
224 void QgsHueSaturationFilter::processColorization(
int &r,
int &g,
int &b,
int &h,
int &s,
int &l )
const
233 QColor colorizedColor = QColor::fromHsl( h, s, l );
235 if ( mColorizeStrength == 100 )
238 myColor = colorizedColor;
241 myColor.getRgb( &r, &g, &b );
246 int colorizedR, colorizedG, colorizedB;
247 colorizedColor.getRgb( &colorizedR, &colorizedG, &colorizedB );
250 double p = ( double ) mColorizeStrength / 100.;
251 r = p * colorizedR + ( 1 - p ) * r;
252 g = p * colorizedG + ( 1 - p ) * g;
253 b = p * colorizedB + ( 1 - p ) * b;
256 myColor = QColor::fromRgb( r, g, b );
257 myColor.getHsl( &h, &s, &l );
262 void QgsHueSaturationFilter::processSaturation(
int &r,
int &g,
int &b,
int &h,
int &s,
int &l )
268 switch ( mGrayscaleMode )
276 myColor = QColor::fromHsl( h, s, l );
277 myColor.getRgb( &r, &g, &b );
283 int luminosity = 0.21 * r + 0.72 * g + 0.07 * b;
284 r = g = b = luminosity;
287 myColor = QColor::fromRgb( r, g, b );
288 myColor.getHsl( &h, &s, &l );
294 int average = ( r + g + b ) / 3;
298 myColor = QColor::fromRgb( r, g, b );
299 myColor.getHsl( &h, &s, &l );
305 if ( mSaturationScale < 1 )
308 s = std::min( (
int )( s * mSaturationScale ), 255 );
314 s = std::min( (
int )( 255. * ( 1 - std::pow( 1 - ( s / 255. ), std::pow( mSaturationScale, 2 ) ) ) ), 255 );
318 myColor = QColor::fromHsl( h, s, l );
319 myColor.getRgb( &r, &g, &b );
327 mSaturation = std::clamp(
saturation, -100, 100 );
330 mSaturationScale = ( ( double ) mSaturation / 100 ) + 1;
338 mColorizeH = mColorizeColor.hue();
339 mColorizeS = mColorizeColor.saturation();
344 if ( parentElem.isNull() )
349 QDomElement filterElem = doc.createElement( QStringLiteral(
"huesaturation" ) );
351 filterElem.setAttribute( QStringLiteral(
"saturation" ), QString::number( mSaturation ) );
352 filterElem.setAttribute( QStringLiteral(
"grayscaleMode" ), QString::number( mGrayscaleMode ) );
353 filterElem.setAttribute( QStringLiteral(
"invertColors" ), QString::number( mInvertColors ) );
354 filterElem.setAttribute( QStringLiteral(
"colorizeOn" ), QString::number( mColorizeOn ) );
355 filterElem.setAttribute( QStringLiteral(
"colorizeRed" ), QString::number( mColorizeColor.red() ) );
356 filterElem.setAttribute( QStringLiteral(
"colorizeGreen" ), QString::number( mColorizeColor.green() ) );
357 filterElem.setAttribute( QStringLiteral(
"colorizeBlue" ), QString::number( mColorizeColor.blue() ) );
358 filterElem.setAttribute( QStringLiteral(
"colorizeStrength" ), QString::number( mColorizeStrength ) );
360 parentElem.appendChild( filterElem );
365 if ( filterElem.isNull() )
370 setSaturation( filterElem.attribute( QStringLiteral(
"saturation" ), QStringLiteral(
"0" ) ).toInt() );
372 mInvertColors =
static_cast< bool >( filterElem.attribute( QStringLiteral(
"invertColors" ), QStringLiteral(
"0" ) ).toInt() );
374 mColorizeOn =
static_cast< bool >( filterElem.attribute( QStringLiteral(
"colorizeOn" ), QStringLiteral(
"0" ) ).toInt() );
375 int mColorizeRed = filterElem.attribute( QStringLiteral(
"colorizeRed" ), QStringLiteral(
"255" ) ).toInt();
376 int mColorizeGreen = filterElem.attribute( QStringLiteral(
"colorizeGreen" ), QStringLiteral(
"128" ) ).toInt();
377 int mColorizeBlue = filterElem.attribute( QStringLiteral(
"colorizeBlue" ), QStringLiteral(
"128" ) ).toInt();
378 setColorizeColor( QColor::fromRgb( mColorizeRed, mColorizeGreen, mColorizeBlue ) );
379 mColorizeStrength = filterElem.attribute( QStringLiteral(
"colorizeStrength" ), QStringLiteral(
"100" ) ).toInt();