Pycharm画图中文无法显示:UserWarning: Glyph 20013 (\N{CJK UNIFIED IDEOGRAPH-4E2D}) missing from current font.

部署运行你感兴趣的模型镜像

 正常情况下,添加以下代码即可解决

from pylab import mpl
 
mpl.rcParams["font.sans-serif"] = ["SimHei"]
mpl.rcParams["axes.unicode_minus"] = False  # 设置正常显示符号

但如果添加后依然报错,一定要注意 代码中是否设置了样式,例如添加以下代码依旧无法显示中文:

sns.set_style("whitegrid")

删除该后中文字体显示恢复正常,因为Seaborn 的样式设置会覆盖 Matplotlib 的字体配置​​,某些参数与中文字体渲染存在冲突

如果想保留的话改为以下代码:

plt.rcParams['axes.unicode_minus'] = False  # 解决负号显示问题
plt.rcParams['font.sans-serif'] = ['SimHei']

# 设置全局样式
sns.set_style("whitegrid", {'font.sans-serif': plt.rcParams['font.sans-serif']})

您可能感兴趣的与本文相关的镜像

Python3.11

Python3.11

Conda
Python

Python 是一种高级、解释型、通用的编程语言,以其简洁易读的语法而闻名,适用于广泛的应用,包括Web开发、数据分析、人工智能和自动化脚本

D:\Anaconda_envs\envs\label\python.exe D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 24180 (\N{CJK UNIFIED IDEOGRAPH-5E74}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 20135 (\N{CJK UNIFIED IDEOGRAPH-4EA7}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 19975 (\N{CJK UNIFIED IDEOGRAPH-4E07}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 21544 (\N{CJK UNIFIED IDEOGRAPH-5428}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 25104 (\N{CJK UNIFIED IDEOGRAPH-6210}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 25910 (\N{CJK UNIFIED IDEOGRAPH-6536}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 20837 (\N{CJK UNIFIED IDEOGRAPH-5165}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 20803 (\N{CJK UNIFIED IDEOGRAPH-5143}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 30408 (\N{CJK UNIFIED IDEOGRAPH-76C8}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 20111 (\N{CJK UNIFIED IDEOGRAPH-4E8F}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 24179 (\N{CJK UNIFIED IDEOGRAPH-5E73}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 34913 (\N{CJK UNIFIED IDEOGRAPH-8861}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 26512 (\N{CJK UNIFIED IDEOGRAPH-6790}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 22270 (\N{CJK UNIFIED IDEOGRAPH-56FE}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 24635 (\N{CJK UNIFIED IDEOGRAPH-603B}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 38144 (\N{CJK UNIFIED IDEOGRAPH-9500}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 21806 (\N{CJK UNIFIED IDEOGRAPH-552E}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 22266 (\N{CJK UNIFIED IDEOGRAPH-56FA}) missing from current font. plt.tight_layout() D:\A_python_learning\suspect_decent\yolov5-v7.0\ggg.py:61: UserWarning: Glyph 23450 (\N{CJK UNIFIED IDEOGRAPH-5B9A}) missing from current font. plt.tight_layout() D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 24180 (\N{CJK UNIFIED IDEOGRAPH-5E74}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 20135 (\N{CJK UNIFIED IDEOGRAPH-4EA7}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 19975 (\N{CJK UNIFIED IDEOGRAPH-4E07}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 21544 (\N{CJK UNIFIED IDEOGRAPH-5428}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 25104 (\N{CJK UNIFIED IDEOGRAPH-6210}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 26412 (\N{CJK UNIFIED IDEOGRAPH-672C}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 25910 (\N{CJK UNIFIED IDEOGRAPH-6536}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 20837 (\N{CJK UNIFIED IDEOGRAPH-5165}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 20803 (\N{CJK UNIFIED IDEOGRAPH-5143}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 30408 (\N{CJK UNIFIED IDEOGRAPH-76C8}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 20111 (\N{CJK UNIFIED IDEOGRAPH-4E8F}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 24179 (\N{CJK UNIFIED IDEOGRAPH-5E73}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 34913 (\N{CJK UNIFIED IDEOGRAPH-8861}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 28857 (\N{CJK UNIFIED IDEOGRAPH-70B9}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 26512 (\N{CJK UNIFIED IDEOGRAPH-6790}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 22270 (\N{CJK UNIFIED IDEOGRAPH-56FE}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 24635 (\N{CJK UNIFIED IDEOGRAPH-603B}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 38144 (\N{CJK UNIFIED IDEOGRAPH-9500}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 21806 (\N{CJK UNIFIED IDEOGRAPH-552E}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 22266 (\N{CJK UNIFIED IDEOGRAPH-56FA}) missing from current font. FigureCanvasAgg.draw(self) D:\PyCharm 2024.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:80: UserWarning: Glyph 23450 (\N{CJK UNIFIED IDEOGRAPH-5B9A}) missing from current font. FigureCanvasAgg.draw(self) Process finished with exit code 0
10-30
✓ 特征保存到: E:\Yolov8\multi_polar_spectral\results\features.json 总样本数: 3 E:/Yolov8/multi_polar_spectral/fixed_analysis.py:355: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive_framework attribute was deprecated in Matplotlib 3.6 and will be removed two minor releases later. fig, axes = plt.subplots(2, 3, figsize=(15, 10)) E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 38190 (\N{CJK UNIFIED IDEOGRAPH-952E}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 29305 (\N{CJK UNIFIED IDEOGRAPH-7279}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 24449 (\N{CJK UNIFIED IDEOGRAPH-5F81}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 33258 (\N{CJK UNIFIED IDEOGRAPH-81EA}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 21160 (\N{CJK UNIFIED IDEOGRAPH-52A8}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 25512 (\N{CJK UNIFIED IDEOGRAPH-63A8}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 23548 (\N{CJK UNIFIED IDEOGRAPH-5BFC}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 31867 (\N{CJK UNIFIED IDEOGRAPH-7C7B}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 35268 (\N{CJK UNIFIED IDEOGRAPH-89C4}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 21017 (\N{CJK UNIFIED IDEOGRAPH-5219}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 38469 (\N{CJK UNIFIED IDEOGRAPH-9645}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:471: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from current font. plt.tight_layout() E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 38190 (\N{CJK UNIFIED IDEOGRAPH-952E}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 29305 (\N{CJK UNIFIED IDEOGRAPH-7279}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 24449 (\N{CJK UNIFIED IDEOGRAPH-5F81}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 33258 (\N{CJK UNIFIED IDEOGRAPH-81EA}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 21160 (\N{CJK UNIFIED IDEOGRAPH-52A8}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 25512 (\N{CJK UNIFIED IDEOGRAPH-63A8}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 23548 (\N{CJK UNIFIED IDEOGRAPH-5BFC}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 31867 (\N{CJK UNIFIED IDEOGRAPH-7C7B}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 35268 (\N{CJK UNIFIED IDEOGRAPH-89C4}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 21017 (\N{CJK UNIFIED IDEOGRAPH-5219}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 38469 (\N{CJK UNIFIED IDEOGRAPH-9645}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:/Yolov8/multi_polar_spectral/fixed_analysis.py:475: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from current font. plt.savefig(output_path, dpi=300, bbox_inches='tight') E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 38190 (\N{CJK UNIFIED IDEOGRAPH-952E}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 29305 (\N{CJK UNIFIED IDEOGRAPH-7279}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 24449 (\N{CJK UNIFIED IDEOGRAPH-5F81}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 33258 (\N{CJK UNIFIED IDEOGRAPH-81EA}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 21160 (\N{CJK UNIFIED IDEOGRAPH-52A8}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 25512 (\N{CJK UNIFIED IDEOGRAPH-63A8}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 23548 (\N{CJK UNIFIED IDEOGRAPH-5BFC}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 31867 (\N{CJK UNIFIED IDEOGRAPH-7C7B}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 35268 (\N{CJK UNIFIED IDEOGRAPH-89C4}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 21017 (\N{CJK UNIFIED IDEOGRAPH-5219}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 38469 (\N{CJK UNIFIED IDEOGRAPH-9645}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:83: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from current font. FigureCanvasAgg.draw(self) E:/Yolov8/multi_polar_spectral/fixed_analysis.py:476: MatplotlibDeprecationWarning: Support for FigureCanvases without a required_interactive_framework attribute was deprecated in Matplotlib 3.6 and will be removed two minor releases later. plt.show() E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 20851 (\N{CJK UNIFIED IDEOGRAPH-5173}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 38190 (\N{CJK UNIFIED IDEOGRAPH-952E}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 29305 (\N{CJK UNIFIED IDEOGRAPH-7279}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 24449 (\N{CJK UNIFIED IDEOGRAPH-5F81}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 33258 (\N{CJK UNIFIED IDEOGRAPH-81EA}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 21160 (\N{CJK UNIFIED IDEOGRAPH-52A8}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 25512 (\N{CJK UNIFIED IDEOGRAPH-63A8}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 23548 (\N{CJK UNIFIED IDEOGRAPH-5BFC}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 30340 (\N{CJK UNIFIED IDEOGRAPH-7684}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 20998 (\N{CJK UNIFIED IDEOGRAPH-5206}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 31867 (\N{CJK UNIFIED IDEOGRAPH-7C7B}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 35268 (\N{CJK UNIFIED IDEOGRAPH-89C4}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 21017 (\N{CJK UNIFIED IDEOGRAPH-5219}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 23454 (\N{CJK UNIFIED IDEOGRAPH-5B9E}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 38469 (\N{CJK UNIFIED IDEOGRAPH-9645}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 27979 (\N{CJK UNIFIED IDEOGRAPH-6D4B}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 37327 (\N{CJK UNIFIED IDEOGRAPH-91CF}) missing from current font. FigureCanvasAgg.draw(self) E:\Deeplearning_soft\pycharm\Pycharm\PyCharm 2020.1\plugins\python\helpers\pycharm_matplotlib_backend\backend_interagg.py:65: UserWarning: Glyph 20540 (\N{CJK UNIFIED IDEOGRAPH-503C}) missing from current font. FigureCanvasAgg.draw(self)
最新发布
12-03
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值