Debug
本专栏旨在解决程序编译过程的出现的问题和故障
田家大院院士
In God, We trust
展开
-
(解决FutureWarning: Passing (type, 1) or ‘1type‘ as a synonym of type is deprecated; in a future versi
@[TOC](解决FutureWarning: Passing (type, 1) or ‘1type’ as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / ‘(1,)type’.)的方法。在导入TensorFlow库后运行时出现如下警告,原因在于安装了多个版本的numpy库或者安装的版本不正确。>>> import tenso原创 2020-08-27 15:40:49 · 597 阅读 · 0 评论 -
Python3遇到问题unicodeescape codec cant decode bytes in position 2 3 truncated UXXXXXXXX escape解决办法
Python3 代码运行时遇到如下错误提示:SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3:truncated \UXXXXXXXX escape主要原因在于代码路径错误,应将反斜杠‘ \ ’替换为斜杠’ / ',问题就会解决。注意:不同的系统对于路径的格式要求不同,如果代码编译时遇到与上述相似的错误提示,尝试改变斜杠。...原创 2020-05-25 14:53:18 · 10740 阅读 · 0 评论 -
解决error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'的方法
一、问题在python3编译程序过程中出现下图中的错误导致编译失败。二、解决办法这种错误发生是因为图片没有被正确读取。所以问题出现在前一行的cv2.imread中,建议:(1)检查所给的路径是否有该图片存在;(2)检查C:/Users/Administrator/Desktop/3m.png后面的变量是否为有效数字,0代表灰度图像。image = cv2.imread('C:/Use...原创 2020-01-03 20:31:25 · 31440 阅读 · 2 评论 -
解决sys.argv[1]出现IndexError: list index out of range 问题和使用Argparse模块的正确方法
解决 sys.argv[1]出现IndexError: list index out of range 问题的正确方法argv[1]:sys.argv[]是用来获取命令行参数的,需要你从电脑终端输入所需参数以备程序运行,就像C语言中const限定符一样,只需要在前面给出:const int DAY = 10,后面所有涉及到变量DAY的地方只需要在前面将10改为其他数字即可,不需要在代码中一一修...原创 2020-01-02 10:33:00 · 5585 阅读 · 5 评论