Skip to content

ft_filter

fuzzyfunctionOpenCV 5.0.0
import { ft_filter } from '@banou/opencv-wasm'

Use after await initOpenCV(). See the initialization and named imports guide.

ARGUMENTSimage, kernel, output
FUNCTIONft_filter
RETURN TYPEvoid
Call structure. A void return can still write to destination arguments. The parameter descriptions define inputs, outputs and ownership.

Image filtering

ft_filter(image: Mat, kernel: Mat, output: Mat): void;
image

Input image.

kernel

Final 32-bit kernel.

output

Output destination, filled by the native operation. Output 32-bit image.

Filtering of the input image by means of F-transform.

These signatures describe this package. Upstream documentation can mention optional backends that are absent from this build. Check runtime compatibility before choosing a backend or file format.