1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /*M
- #ifndef __OPENCV_FUZZY_H__
- #define __OPENCV_FUZZY_H__
- #include "opencv2/fuzzy/types.hpp"
- #include "opencv2/fuzzy/fuzzy_F0_math.hpp"
- #include "opencv2/fuzzy/fuzzy_F1_math.hpp"
- #include "opencv2/fuzzy/fuzzy_image.hpp"
- /**
- @defgroup fuzzy Image processing based on fuzzy mathematics
- Namespace for all functions is `ft`. The module brings implementation of the last image processing algorithms based on fuzzy mathematics. Method are named based on the pattern `FT`_degree_dimension`_`method.
- @{
- @defgroup f0_math Math with F0-transform support
- Fuzzy transform (\f$F^0\f$-transform) of the 0th degree transforms whole image to a matrix of its components. These components are used in latter computation where each of them represents average color of certain subarea.
- @defgroup f1_math Math with F1-transform support
- Fuzzy transform (\f$F^1\f$-transform) of the 1th degree transforms whole image to a matrix of its components. Each component is polynomial of the 1th degree carrying information about average color and average gradient of certain subarea.
- @defgroup f_image Fuzzy image processing
- Image proceesing based on fuzzy mathematics namely F-transform.
- @}
- */
- #endif
|