[OpenFV] I've uploaded my first Python package

Hi, All.
I’ve uploaded my first Python package.

The name is OpenFV
It’s a collection of functions for image processing in the frequency domain. It contains about 6 specialized image processing functions that are not available in OpenCV.

I will continue to update it…

OpenFV PyPI address:

Demo Video Youtube:

  • Source code for video demo applications is provided.

Installation:
pip3 install openfv

Usage:
pythonCopyimport openfv as fv
import cv2
image = cv2.imread(‘file_name.png’)
spectrum = fv.ww_amplitude_spectrum(image)

This is how it works.

Thanks !

1 Like