Namespace for attribute filtering. More...
Functions | |
| template<typename T , typename F , typename P > | |
| void | direct (const T &tree, Image< F > &f_, const Function_v2b< P > &pred_) |
| Direct non-pruning strategy. | |
| template<typename T , typename F , typename P > | |
| void | filter (const T &tree, Image< F > &f_, const Function_v2b< P > &pred_, const typename F::value &v) |
Filter the image f_ with a given value. | |
| template<typename T , typename F , typename P > | |
| void | max (const T &tree, Image< F > &f_, const Function_v2b< P > &pred_) |
| Max pruning strategy. | |
| template<typename T , typename F , typename P > | |
| void | min (const T &tree, Image< F > &f_, const Function_v2b< P > &pred_) |
| Min pruning strategy. | |
| template<typename T , typename F , typename P > | |
| void | subtractive (const T &tree, Image< F > &f_, const Function_v2b< P > &pred_) |
| Subtractive pruning strategy. | |
Namespace for attribute filtering.
| void mln::morpho::tree::filter::direct | ( | const T & | tree, | |
| Image< F > & | f_, | |||
| const Function_v2b< P > & | pred_ | |||
| ) | [inline] |
Direct non-pruning strategy.
A node is removed if it does not verify the predicate. The sub-components remain intact.
| [in] | tree | Component tree. |
| [out] | f_ | Image to filter. |
| [in] | pred_ | Filtering criterion. |
References mln::trace::entering(), mln::exact(), and mln::trace::exiting().
| void mln::morpho::tree::filter::filter | ( | const T & | tree, | |
| Image< F > & | f_, | |||
| const Function_v2b< P > & | pred_, | |||
| const typename F::value & | v | |||
| ) | [inline] |
Filter the image f_ with a given value.
The sub-components of nodes that does not match the predicate pred_ are filled with the given value v.
References mln::trace::entering(), mln::exact(), mln::trace::exiting(), mln::data::fill(), and mln::initialize().
| void mln::morpho::tree::filter::max | ( | const T & | tree, | |
| Image< F > & | f_, | |||
| const Function_v2b< P > & | pred_ | |||
| ) | [inline] |
Max pruning strategy.
A node is removed iif all of its children are removed or if it does not verify the predicate pred_.
| [in] | tree | Component tree. |
| [out] | f_ | Image to filter. |
| [in] | pred_ | Filtering criterion. |
References mln::trace::entering(), mln::exact(), mln::trace::exiting(), mln::data::fill(), and mln::initialize().
| void mln::morpho::tree::filter::min | ( | const T & | tree, | |
| Image< F > & | f_, | |||
| const Function_v2b< P > & | pred_ | |||
| ) | [inline] |
Min pruning strategy.
A node is removed iif its parent is removed or if it does not verify the predicate pred_.
| [in] | tree | Component tree. |
| [out] | f_ | Image to filter. |
| [in] | pred_ | Filtering criterion. |
References mln::trace::entering(), mln::exact(), mln::trace::exiting(), mln::data::fill(), and mln::initialize().
| void mln::morpho::tree::filter::subtractive | ( | const T & | tree, | |
| Image< F > & | f_, | |||
| const Function_v2b< P > & | pred_ | |||
| ) | [inline] |
Subtractive pruning strategy.
The node is removed if it does not verify the predicate. The sub-components values are set to the value of the removed component.
| [in] | tree | Component tree. |
| [out] | f_ | Image to filter. |
| [in] | pred_ | Filtering criterion. |
References mln::trace::entering(), mln::exact(), mln::trace::exiting(), and mln::morpho::tree::propagate_if().
1.7.1