logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

Python错误集锦:python: can’t open file ‘hello’: [Errno 2] No such file or directory

错误提示:在命令行输入python py文件名称,提示:python: can’t open file ‘hello’: [Errno 2] No such file or directoryD:\juzicode>python hellopython: can't open file 'hello': [Errno 2] No such file or directory可能原因:1、本意

#python
Python压缩解压–tarfile

Python压缩解压缩模块tarfile

#python
Python错误集锦:使用list.index()提示ValueError: 20 is not in list

原文链接:http://www.juzicode.com/archives/2701错误提示:使用list的index方法查找元素时提示:ValueError: 20 is not in list#juzicode.com/vx:桔子codelst = [1,3,9,5,21]a = lst.index(3)print('3第1次出现的位置',a)a = lst.index(20)print('2

#python
python py文件与pyc文件相互转换

本文以Python3.8为例1、 compileall py文件转换为pyc1.1、compileall命令行模式不需要额外安装,python自带模块。可以利用Python -m的方式在命令行模式下编译py文件。python -m compileall文件或路径可选项比如要编译当前工作目录下的所有py文件:python -m compileall.或者:python -m compileall.\

#python
OpenCV检测与识别条码、二维码

目录1、BarcodeDetector 识别条形码2、QRCodeDetector 识别二维码扩展阅读:1、BarcodeDetector 识别条形码OpenCV在V4.5.3版本的contrib包中提供了一个barcode::BarcodeDetector类,用这个类可以实现条形码的识别,不过目前仅支持EAN13编码的条形码,其他类型的条形码在当前版本的BarcodeDetector还不支持。在

文章图片
#opencv#计算机视觉#python
Tesseract-OCR5.0命令类型

原文链接:http://www.juzicode.com/image-ocr-tesseract-ocr5-command帮助命令 –help或-h直接输入tesseract或tesseract –help或tesseract -h会带出帮助信息:E:\juzicode>tesseractUsage:tesseract --help | --help-extra | --versiontes

#图像处理
Python错误集锦:格式化字符串 IndexError: Replacement index 5 out of range for positional args tuple

原文链接:http://www.juzicode.com/archives/2725错误提示:格式化字符串时提示index超出范围:IndexError: Replacement index 5 out of range for positional args tuple#juzicode.com/vx:桔子codea = 3b = 5.12345c = '桔子code'd = [1,2,3,4,

#python
OpenCV-Python教程:颜色图(applyColorMap)[只需几行代码生成22种风格各异的彩色图]

返回OpenCV-Python教程原文链接:http://www.juzicode.com/opencv-note-color-map-applycolormap在OpenCV中通常使用cvtColor()进行色彩空间的转换,它可以实现彩色图像在各种色彩空间里的转换,也可以用于彩色图像和灰度图像之间相互转换,但是在彩色图像转换到灰度图像后,再用该灰度图转换回彩色图像只是名义上多通道的彩色图像,人眼

文章图片
#opencv#python#计算机视觉
    共 30 条
  • 1
  • 2
  • 3
  • 请选择