PhotoImage显示问题:显示空白框,大小是图片的真实大小
原因:图像对象被回收了
解决办法:使用其他对象引用该对象即可(也可用于本项目全域引用,可被任意其他文件使用如list引用)
参考:https://blog.csdn.net/dekiven1/article/details/77508504
SyntaxWarning: name 'xxx' is assigned to before global declaration
原因:使用全局变量进行赋值操作而没有标明
解决办法:使用 global x 指明使用的是全局变量
参考:https://blog.csdn.net/DaSunWarman/article/details/78621188?utm_source=blogxgwz0
tkinter在循环中创建按钮以传递命令参数无效
解决办法:使用lambda表达式,即 lambda: fun(x)
参考:http://www.imooc.com/wenda/detail/572383
图像格式问题
将NumPy ndarray数据转换为PIL Image类型数据:img_pil = Image.fromarray(img_arr)
numpy.ndarray 转 image:数据类型dtype要求tf.uint8
参考:https://blog.csdn.net/discoverer100/article/details/102993264
参考:https://www.jianshu.com/p/e4ca58897b99
ValueError: Unknown resampling filter (107). Use Image.NEAREST (0), Image.LANCZOS >(1), Image.BIL
原因:resize函数调用的写法不正确
解决办法:使用元组传参
参考:https://blog.csdn.net/discoverer100/article/details/100094556
python-opencv旋转图像,保持图像不被裁减
参考:https://blog.csdn.net/yjl9122/article/details/70833330?utm_source=blogxgwz3
参考:https://docs.opencv.org/2.4/modules/imgproc/doc/geometric_transformations.html#void%20warpAffine(InputArray%20src,%20OutputArray%20dst,%20InputArray%20M,%20Size%20dsize,%20int%20flags,%20int%20borderMode,%20const%20Scalar&%20borderValue)
bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml
解决办法:搜索lxml并安装
参考:https://blog.csdn.net/z137628817/article/details/69240476
在pycharm中用plt打开图片使用plt.ginput()获取点击坐标失败
参考:https://blog.csdn.net/qq_23944915/article/details/84780820
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xa1 in position 0 报错
原因:Python 编码中编码解码的问题,我这个错误就是‘utf-8’不能解码位置0的那个字节(0xa1),也就是这个字节超出了utf-8的表示范围了
解决办法:更换编码方式,如encoding='gb18030'
参考:https://blog.csdn.net/qq_41325698/article/details/101937198
error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'
原因:路径错误
解决办法:修改为正确路径,最好不要有汉字
参考:https://blog.csdn.net/qq_34741578/article/details/91900376
jupyter怎么使用pip install安装模块
解决办法:在安装命令前加 "!"
参考:https://jingyan.baidu.com/article/c843ea0b4104ad37921e4a2a.html