8000 GitHub - liugd970304/cv2pynq: Python package which accelerates OpenCV image filtering functions for the PYNQ framework
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Python package which accelerates OpenCV image filtering functions for the PYNQ framework

License

Notifications You must be signed in to change notification settings

liugd970304/cv2pynq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cv2PYNQ

This Python package accelerates OpenCV image filtering functions for the PYNQ platform. The library implements a specific set of popular image filters and feature detection algorithms. The calculation of time-consuming tasks is implemented in the Programmable Logic (PL) of the ZYNQ chip. cv2PYNQ also includes the Video-Subsystem of the base project of PYNQ. Therefore, the HDMI In and Out interfaces can be used in your application. The library calculates every filter for gray-channel images with 1080p within 16 ms if the input and output buffers are located in the contiguous memory of the chip.

Get Started

Install by typing:

git clone https://github.com/wbrueckner/cv2pynq.git   
cd cv2pynq/   
pip3.6 install -e .   

into the terminal on your Pynq-Z1 board.
The library comes with a jupyter notebook to demonstrate its usage and capabilities. You find the notebook in the cv2PYNQ folder of your home tree after installation.

Link to YouTube Video: https://www.youtube.com/watch?v=nRxe-NqvOl8

Currently accelerated functions:

  • Sobel: 3x3; 5x5
  • Scharr
  • Laplacian: ksize = 1; 3; 5
  • blur: ksize = 3
  • GaussinBlur: ksize = 3
  • erode: ksize = 3
  • dilate: ksize = 3
  • Canny

Contribute to cv2PYNQ

Read the instructions in cv2PYNQ - The project behind the library.

About

Python package which accelerates OpenCV image filtering functions for the PYNQ framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Tcl 65.9%
  • Python 28.8%
  • Jupyter Notebook 5.3%
0