Halcon and Qt joint programming method one (python version)

Foreword;
halcon integrates a lot of image processing algorithms, which is an artifact of machine vision development, but the implementation of the algorithm needs to be formed into software. Most of the time, qt is used. The cross-platform characteristics of qt make it more and more choices for software development engineers.
Halcon and Qt joint programming can use Python version:

(1) Install the halcon package;
pip install mvtec-halcon==20110 import halcon as ha xxxx xxxx xxxx
in the .py file after editing the algorithm




(2) Write software with pyqt and embed the algorithm
Install pyqt
to write the interface
and embed the algorithm

This method is based on the .py file, that is, the halcon package and pyqt implementation

Guess you like

Origin blog.csdn.net/qq_43207709/article/details/130573898