123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- /*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_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.
- @{
- @defgroup f0_math Math with F0-transfrom support
- Fuzzy transform (F-transform) of the 0th degree transform whole image to a vector of its components. These components are used in latter computation.
- @defgroup f_image Fuzzy image processing
- Image proceesing based on F-transform is fast to process and easy to understand.
- @}
- */
- #endif
|