Expand description
§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.
§Math with F0-transform support
Fuzzy transform (-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.
§Math with F1-transform support
Fuzzy transform (-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.
§Fuzzy image processing
Image proceesing based on fuzzy mathematics namely F-transform.
Modules§
Constants§
- ITERATIVE
- processing in several iterations
- LINEAR
- linear (triangular) shape
- MULTI_
STEP - processing in multiple step
- ONE_
STEP - processing in one step
- SINUS
- sinusoidal shape
Functions§
- create_
kernel - Creates kernel from general functions.
- create_
kernel1 - Creates kernel from basic functions.
- filter
- Image filtering
- ft0_
2d_ components - Computes components of the array using direct inline formula-transform.
- ft0_
2d_ components_ def - Computes components of the array using direct inline formula-transform.
- ft0_
2d_ fl_ process - Sligtly less accurate version of inline formula-transfrom computation optimized for higher speed. The methods counts with linear basic function.
- ft0_
2d_ fl_ process_ float - Sligtly less accurate version of inline formula-transfrom computation optimized for higher speed. The methods counts with linear basic function.
- ft0_
2d_ inverse_ ft - Computes inverse inline formula-transfrom.
- ft0_
2d_ iteration - Computes inline formula-transfrom and inverse inline formula-transfrom at once and return state.
- ft0_
2d_ process - Computes inline formula-transfrom and inverse inline formula-transfrom at once.
- ft0_
2d_ process_ def - Computes inline formula-transfrom and inverse inline formula-transfrom at once.
- ft1_
2d_ components - Computes components of the array using direct inline formula-transform.
- ft1_
2d_ create_ polynom_ matrix_ horizontal - Creates horizontal matrix for inline formula-transform computation.
- ft1_
2d_ create_ polynom_ matrix_ vertical - Creates vertical matrix for inline formula-transform computation.
- ft1_
2d_ inverse_ ft - Computes inverse inline formula-transfrom.
- ft1_
2d_ polynomial - Computes elements of inline formula-transform components.
- ft1_
2d_ polynomial_ def - Computes elements of inline formula-transform components.
- ft1_
2d_ process - Computes inline formula-transfrom and inverse inline formula-transfrom at once.
- ft1_
2d_ process_ def - Computes inline formula-transfrom and inverse inline formula-transfrom at once.
- inpaint
- Image inpainting