|
| FuzzyStep (T startPos=-1.0, T endPos=1.0, double scale=1.0, double bias=0.0) |
| Constructor. More...
|
|
| FuzzyStep (const FuzzyStep< T > &f) |
|
void | set (double rangeMin, double rangeMax, double scale=1.0, double bias=0.0) |
|
void | set (const drain::Range< double > &r, double scale=1.0, double bias=0.0) |
|
virtual void | updateBean () const override |
| Called after setParameters()
|
|
virtual double | operator() (double x) const |
|
| Fuzzifier (const std::string &name, const std::string &description="", double scale=1.0, double bias=0.0) |
|
| UnaryFunctor (const std::string &name, const std::string &description="", double scale=1.0, double bias=0.0) |
|
void | setScale (double scale, double bias=0.0) |
|
virtual const std::string & | getName () const |
| Return the name of an instance.
|
|
virtual const std::string & | getDescription () const |
| Return a brief description.
|
|
bool | hasParameters () const |
|
template<class F > |
F | getParameter (const std::string &p) const |
| Gets a single parameter.
|
|
const ReferenceMap & | getParameters () const |
|
ReferenceMap & | getParameters () |
|
template<class F > |
void | setParametersFromEntries (const F &args) |
|
void | setParameters (std::initializer_list< Variable::init_pair_t > args) |
| Grants access to (if above hidden)
|
|
virtual void | setParameters (const std::string &p, char assignmentSymbol='=', char separatorSymbol=0) |
| Sets comma-separated parameters in a predetermined order "a,b,c" or by specifing them "b=2". More...
|
|
template<class T > |
void | setParameters (const std::map< std::string, T > &args) |
| Set parameters.
|
|
template<class T > |
void | setParameters (const SmartMap< T > &args) |
| Set parameters.
|
|
void | setParameter (const std::string &p, const Castable &value) |
| Sets a single parameter.
|
|
template<class T > |
void | setParameter (const std::string &p, const VariableT< T > &value) |
|
template<class F > |
void | setParameter (const std::string &p, const F &value) |
| Sets a single parameter. More...
|
|
template<class F > |
void | setParameter (const std::string &p, std::initializer_list< F > value) |
| Sets a single parameter.
|
|
BeanLike & | operator= (const BeanLike &b) |
|
virtual std::ostream & | toStream (std::ostream &ostr, bool compact=true) const |
|
| BeanLike (const BeanLike &b) |
|
| BeanLike (const std::string &name, const std::string &description="") |
|
template<class T>
class drain::FuzzyStep< T >
A basic, linear transition from 0 to scale between
(start) and
(end) .
\tparam T - input storage type
\tparam T2 - output storage type
Examples with and without physical scaling to (0.0,1.0), setting step at 50% intensity (128 and 0.5):
drainage image-gray.png --iFuzzyStep 64:192 -o fuzzyStep.png
drainage image-gray.png -R 0:1 --iFuzzyStep 0.25:0.75 -o fuzzyStep-phys.png
When changing storage type, scaling must be given explicitly (here 256, from C
to S
) or physically with -R
:
drainage image-gray.png -T S --iFuzzyStep 64:192 -o fuzzyStep-16bit.png
drainage image-gray.png -R 0:1 -T S --iFuzzyStep 0.25:0.5 -o fuzzyStep-16bit-phys.png