- 博客(6)
- 资源 (3)
- 收藏
- 关注
原创 python打包为windows应用程序
安装pyinstallerpip install pyinstallerpyinstaller -F 1.py应用程序生成在dist目录
2020-12-21 12:53:19 268
原创 python应用将ppt转为图片和pdf
import win32comimport win32com.clientimport sysimport osppt_root = jpg_root =os.getcwd()+"\"def ppt2png(pptFileName):powerpoint = win32com.client.Dispatch(‘PowerPoint.Application’)#powerpoint.Visible = Trueppt_path = ppt_root + pptFileNameoutputFi
2020-12-21 12:50:08 373
原创 python应用opencv提取二维码信息,提高识别率
二维码识别:frame= cv2.imread(filename)# 转为灰度图像gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)barcodes = pyzbar.decode(gray)这样识别率不高,为了提高识别率,可调整图像二值化阈值thre = 35 while (len(barcodes) == 0 and thre < 200): ret, thresh = cv2.threshold(
2020-12-12 16:00:19 3330 1
原创 ubuntu、windows安装python ta-lib库
1、从http://www.ta-lib.org/hdr_dw.html下载ta-lib-0.4.0-src.tar.gz,然后运行如下操作:bash ./configure --prefix=/usr/makemake install2、git clone https://github.com/mrjbq7/ta-lib.gitcd ta-libpython setup.py install
2020-12-12 15:40:00 396 1
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人