[][src]Function opencv::fuzzy::ft02_d_iteration

pub fn ft02_d_iteration(
    matrix: &dyn ToInputArray,
    kernel: &dyn ToInputArray,
    output: &mut dyn ToOutputArray,
    mask: &dyn ToInputArray,
    mask_output: &mut dyn ToOutputArray,
    first_stop: bool
) -> Result<i32>

Computes inline formula-transfrom and inverse inline formula-transfrom at once and return state.

Parameters

  • matrix: Input matrix.
  • kernel: Kernel used for processing. Function ft::createKernel can be used.
  • output: Output 32-bit float array.
  • mask: Mask used for unwanted area marking.
  • maskOutput: Mask after one iteration.
  • firstStop: If true function returns -1 when first problem appears. In case of false the process is completed and summation of all problems returned.

This function computes iteration of F-transfrom and inverse F-transfotm and handle image and mask change. The function is used in ft::inpaint function.