Version: 9.16.0
ImageComposer_ColorMaskOperator.h
Go to the documentation of this file.
1// Copyright (C) 2013-2026 CEA, EDF, OPEN CASCADE
2//
3// This library is free software; you can redistribute it and/or
4// modify it under the terms of the GNU Lesser General Public
5// License as published by the Free Software Foundation; either
6// version 2.1 of the License, or (at your option) any later version.
7//
8// This library is distributed in the hope that it will be useful,
9// but WITHOUT ANY WARRANTY; without even the implied warranty of
10// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11// Lesser General Public License for more details.
12//
13// You should have received a copy of the GNU Lesser General Public
14// License along with this library; if not, write to the Free Software
15// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16//
17// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18//
19
20#ifndef IMAGE_COMPOSER_COLOR_MASK_OPERATOR_HEADER
21#define IMAGE_COMPOSER_COLOR_MASK_OPERATOR_HEADER
22
24#include <QColor>
25
31{
32public:
35
36 void setArgs( const QColor& theRefColor,
37 bool isMakeTransparent,
38 int theRGBThreshold,
39 int theAlphaThreshold );
40
41 static QString Type() { return "colormask"; }
42
43 virtual QString name() const;
44
50 QStringList dumpArgsToPython( QString& theArrayName ) const;
51
52protected:
53 virtual QRectF calcResultBoundingRect( const QVariant& theObj1,
54 const QVariant& theObj2 ) const;
55 virtual void drawResult( QPainter& thePainter, const QVariant& theObj1,
56 const QVariant& theObj2 ) const;
57
58 virtual void storeArgs( QDataStream& theStream ) const;
59 virtual void restoreArgs( QDataStream& theStream );
60
61private:
62 friend class ImageComposerTests_TestOperators;
63
64 QColor myRefColor;
69};
70
71#endif
#define IMAGE_COMPOSER_API
Definition: ImageComposer.h:27
Implementation of the color mask operator.
Definition: ImageComposer_ColorMaskOperator.h:31
int myRGBThreshold
the threshold for RGB components
Definition: ImageComposer_ColorMaskOperator.h:67
static QString Type()
Definition: ImageComposer_ColorMaskOperator.h:41
QColor myRefColor
the color to the searched (the color for mask)
Definition: ImageComposer_ColorMaskOperator.h:64
int myAlphaThreshold
the threshold for Alpha component
Definition: ImageComposer_ColorMaskOperator.h:68
bool myIsMakeTransparent
the boolean flag controlling if the pixels with matching color should be made transparent or one with...
Definition: ImageComposer_ColorMaskOperator.h:65
Implementation of the base abstract operation for image composing.
Definition: ImageComposer_Operator.h:41
virtual QRectF calcResultBoundingRect(const QVariant &theObj1, const QVariant &theObj2) const =0
Calculate bounding rectangle for the result image.
QStringList dumpArgsToPython(QString &theArrayName) const
Dumps arguments of operator to python script representation.
Definition: ImageComposer_Operator.cxx:139
virtual QString name() const =0
Return name of the operator.
virtual void drawResult(QPainter &thePainter, const QVariant &theObj1, const QVariant &theObj2) const =0
Draw result image using the given painter.
void setArgs(const QColor &theBackground)
Set operator arguments.
Definition: ImageComposer_Operator.cxx:53
virtual void storeArgs(QDataStream &theStream) const
Store the operator's arguments to the stream.
Definition: ImageComposer_Operator.cxx:168
virtual void restoreArgs(QDataStream &theStream)
Restore the operator's arguments from the stream.
Definition: ImageComposer_Operator.cxx:177