Loading...
Searching...
No Matches
BlenderOp.h
1/*
2
3MIT License
4
5Copyright (c) 2017 FMI Open Development / Markus Peura, first.last@fmi.fi
6
7Permission is hereby granted, free of charge, to any person obtaining a copy
8of this software and associated documentation files (the "Software"), to deal
9in the Software without restriction, including without limitation the rights
10to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11copies of the Software, and to permit persons to whom the Software is
12furnished to do so, subject to the following conditions:
13
14The above copyright notice and this permission notice shall be included in all
15copies or substantial portions of the Software.
16
17THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23SOFTWARE.
24
25*/
26/*
27Part of Rack development has been done in the BALTRAD projects part-financed
28by the European Union (European Regional Development Fund and European
29Neighbourhood Partnership Instrument, Baltic Sea Region Programme 2007-2013)
30*/
31#ifndef BLENDER_OP
32#define BLENDER_OP "BlenderOp Markus.Peura@iki.fi"
33
34#include "WindowOp.h"
35
36
37//#include "SlidingStripeAverageOp.h"
38
39namespace drain
40{
41namespace image
42{
43
44
46
86class BlenderOp: public WindowOp<> {
87
88public:
89
91 // TODO Rename, and use blender only for the op that mixes filtered t unfiltered
95 // TODO: re-consider the order of params?
96 // BlenderOp(int width=5, int height=0, char spreader='a', char mixer='m', unsigned short loops=1) : // , double coeff=0.5
97 BlenderOp(int width=5, int height=0, const std::string & spreader="avg", const std::string & blender="max",
98 unsigned short loops=1, double expansionCoeff=1.0) : // , double coeff=0.5
99 WindowOp<>(__FUNCTION__, "Smoothes image repeatedly, mixing original image with the result at each round.", width, height){
100 parameters.link("spreader", this->spreader = spreader, getSmootherAliasMap<false>().toStr()); //"a|g|d|D; avg, gaussianAvg, dist, distExp");
101 parameters.link("mix", this->blender = blender, "max|<coeff>: (quality) max, (quality) blend");
102 parameters.link("loops", this->loops = loops, "number of repetitions");
103 parameters.link("expansionCoeff", this->expansionCoeff = expansionCoeff, "window enlargement");
104 };
105
106 // Every Op should have a copy const
107 BlenderOp(const BlenderOp & op) : WindowOp<>(op) {
108 parameters.copyStruct(op.getParameters(), op, *this);
109 };
110
111
112
113 inline
114 const std::string & getSmootherKey(){
115 return spreader;
116 }
117
118 virtual inline
119 void initializeParameters(const ImageFrame &src, const ImageFrame &dst) const {
120 if (conf.frame.height == 0){
121 conf.frame.height = conf.frame.width;
122 }
123 }
124
126 void traverseChannels(const ImageTray<const Channel> & src, ImageTray<Channel> & dst) const;
127
128
130 inline
131 virtual void traverseChannel(const Channel &src, Channel & dst) const {
132 traverseAsChannelTrays(src, dst);
133 }
134
136 inline
137 void traverseChannel(const Channel &src, const Channel &srcWeight, Channel & dst, Channel & dstWeight) const {
138 traverseAsChannelTrays(src, srcWeight, dst, dstWeight);
139 }
140
141 virtual inline
142 const std::string & getName() const override {
143 return name;
144 };
145
146protected:
147
148 //mutable drain::SmartMap<std::string> aliasMap;
149
150 template <bool WEIGHTED=false>
151 static
153 static drain::SmartMap<std::string> aliasMap;
154 if (aliasMap.empty()){
156 /*
157 aliasMap["a"] = "average";
158 aliasMap["f"] = "flowAverage"; // magnitude/energy saving
159 aliasMap["g"] = "gaussianAverage";
160 aliasMap["d"] = WEIGHTED ? "distanceTransformFill" : "distanceTransform";
161 aliasMap["D"] = WEIGHTED ? "distanceTransformFillExp" : "distanceTransformExp";
162 */
163 // NEW
164 aliasMap["avg"] = "average";
165 aliasMap["avgFlow"] = "flowAverage"; // magnitude/energy saving
166 aliasMap["avgGauss"] = "gaussianAverage";
167 aliasMap["dist"] = WEIGHTED ? "distanceTransformFill" : "distanceTransform";
168 aliasMap["distExp"] = WEIGHTED ? "distanceTransformFillExp" : "distanceTransformExp";
169 }
170 return aliasMap;
171 }
172
173 template <bool WEIGHTED=false>
174 static
175 const drain::SmartMap<std::string> & getMixerAliasMap(){
176 static drain::SmartMap<std::string> aliasMap;
177 //aliasMap["b"] = WEIGHTED ? "qualityMixer" : "mix";
178 //aliasMap["m"] = WEIGHTED ? "qualityOverride" : "max";
179 // NEW
180 aliasMap["blend"] = WEIGHTED ? "qualityMixer" : "mix";
181 aliasMap["max"] = WEIGHTED ? "qualityOverride" : "max";
182 return aliasMap;
183 }
184
185
186 // SMOOTHING
187 std::string spreader;
188
189 // MIXING
190 std::string blender;
191
192 unsigned short loops = 1;
193
194 double expansionCoeff = 1.0;
195
196
197};
198
199
200
201
202} // namespace drain
203
204} //namespace image
205
206
207#endif
208
209// Drain
void copyStruct(const ReferenceMap &m, const T &src, T &dst, extLinkPolicy policy=RESERVE)
Experimental. Copies references and values of a structure to another.
Definition ReferenceMap.h:415
A base class for smart maps providing methods for importing and exporting values, among others.
Definition SmartMap.h:62
Smoothes image and mixes the result with the original.
Definition BlenderOp.h:86
virtual const std::string & getName() const override
Return the name of an instance.
Definition BlenderOp.h:142
void traverseChannels(const ImageTray< const Channel > &src, ImageTray< Channel > &dst) const
Main operation, requires weighted image data.
Definition BlenderOp.cpp:43
virtual void traverseChannel(const Channel &src, Channel &dst) const
Force multi-channel processing.
Definition BlenderOp.h:131
static const drain::SmartMap< std::string > & getSmootherAliasMap()
Definition BlenderOp.h:152
virtual void initializeParameters(const ImageFrame &src, const ImageFrame &dst) const
Set applicable internal parameters before calling traverse().
Definition BlenderOp.h:119
BlenderOp(int width=5, int height=0, const std::string &spreader="avg", const std::string &blender="max", unsigned short loops=1, double expansionCoeff=1.0)
Default constructor.
Definition BlenderOp.h:97
void traverseChannel(const Channel &src, const Channel &srcWeight, Channel &dst, Channel &dstWeight) const
Force multi-channel processing.
Definition BlenderOp.h:137
Image with static geometry.
Definition ImageChannel.h:58
Image with static geometry.
Definition ImageFrame.h:62
void traverseAsChannelTrays(const ImageFrame &src, ImageFrame &dst) const
Redirect to processing as trays. This is the opposite of processChannels...() functions.
Definition ImageOp.h:216
Container applicable for Channels and Images, with alpha support.
Definition ImageTray.h:266
Definition WindowOp.h:50
Definition DataSelector.cpp:1277