《PyInstaller打包实战指南》第二十三节 单文件模式打包OpenCV-Python

Posted la_vie_est_belle

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了《PyInstaller打包实战指南》第二十三节 单文件模式打包OpenCV-Python相关的知识,希望对你有一定的参考价值。

单文件模式打包OpenCV-Python

打包示例源码:

请看文章末尾

版本信息:

opencv-python==4.5.1.48

numpy==1.23.2

pyinstaller==5.7.0

打包系统:

 Windows10 64位

打包前我们需要运行下代码,确保没有报错。

belle.py代码如下:

import cv2 as cv
alpha = 0.5

# [load]
src1 = cv.imread(cv.samples.findFile(\'linux.jpg\'))
src2 = cv.imread(cv.samples.findFile(\'windows.jpg\'))
if src1 is None:
    print("Error loading src1")
    exit(-1)
elif src2 is None:
    print("Error loading src2")
    exit(-1)

# [blend_images]
beta = (1.0 - alpha)
dst = cv.addWeighted(src1, alpha, src2, beta, 0.0)

# [display]
cv.imshow(\'dst\', dst)
cv.waitKey(0)
cv.destroyAllWindows()

运行截图如下:

以上是关于《PyInstaller打包实战指南》第二十三节 单文件模式打包OpenCV-Python的主要内容,如果未能解决你的问题,请参考以下文章

《PyInstaller打包实战指南》第二十二节 单文件模式打包Playwright

《PyInstaller打包实战指南》第二十二节 单文件模式打包Playwright

centos mysql 实战 第二十三节课

(转)第二十三节 inotify事件监控工具

centos mysql 优化 第二十三节课

php第二十三节课