Basic attempt to see normalized difference mentioned in paper scene shadow effects...
[tecorrec.git] / geo / tcPixelOp.h
blobd0dc41789cdfec1f8e93608299102e3067dee26d
1 /***************************************************************************
2 * This file is part of Tecorrec. *
3 * Copyright 2008 James Hogan <james@albanarts.com> *
4 * *
5 * Tecorrec is free software: you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation, either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * Tecorrec is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with Tecorrec. If not, write to the Free Software Foundation, *
17 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
18 ***************************************************************************/
20 #ifndef _tcPixelOp_h_
21 #define _tcPixelOp_h_
23 /**
24 * @file tcPixelOp.h
25 * @brief Performs a pixel operation on a set of input channels.
28 #include "tcChannel.h"
30 #include <QList>
32 /// Performs a pixel operation on a set of input channels.
33 class tcPixelOp : public tcChannel
35 public:
38 * Types
41 /// Operations
42 enum Op
44 Add,
45 Subtract,
46 Diff,
47 NormalizedDiff
51 * Constructors + destructor
54 /// Primary constructor.
55 tcPixelOp(Op op, const QList<tcChannel*>& inputChannels, float scale = 1.0f);
57 /// Primary constructor.
58 tcPixelOp(Op op, const QList<tcChannel*>& inputChannels, bool radiance);
60 /// Destructor.
61 virtual ~tcPixelOp();
63 protected:
66 * Interface for derived class to implement
69 // Reimplemented
70 virtual void roundPortion(double* x1, double* y1, double* x2, double* y2);
72 // Reimplemented
73 virtual tcAbstractPixelData* loadPortion(double x1, double y1, double x2, double y2, bool changed);
75 private:
78 * Variables
81 /// Input channels.
82 QList<tcChannel*> m_inputChannels;
84 /// Operation.
85 Op m_op;
87 /// Automatically scale to [,1].
88 bool m_autoScale;
90 /// Whether to use radiance.
91 bool m_radiance;
93 /// Overall scale.
94 float m_scale;
97 #endif