This commit is contained in:
ShqWW 2024-09-14 15:43:50 +08:00
parent 07b3c1a505
commit 212f77d446
8 changed files with 4 additions and 4 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 265 KiB

After

Width:  |  Height:  |  Size: 266 KiB

View File

@ -40,7 +40,7 @@ plt.plot(x_6x13, y_6x13, 'p-', color='orange', alpha=alpha, markersize=12, linew
plt.grid(True, linestyle='-', alpha=0.5) plt.grid(True, linestyle='-', alpha=0.5)
plt.xlabel("Anchor Selection Number") # 横坐标名字 plt.xlabel("Anchor Proposal Number") # 横坐标名字
plt.ylabel("F1@50 (%)") # 纵坐标名字 plt.ylabel("F1@50 (%)") # 纵坐标名字
plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题 plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题
plt.savefig('anchor_num_testing.png', dpi=300) plt.savefig('anchor_num_testing.png', dpi=300)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 282 KiB

After

Width:  |  Height:  |  Size: 283 KiB

View File

@ -43,7 +43,7 @@ y_6x13 = [90.845, 89.979, 89.492, 89.237, 89.101, 89.055, 89.018, 88.999, 88.996
plt.plot(x_6x13, y_6x13, 'p-', color='orange', alpha=alpha, markersize=12, linewidth=4, label="6*13") plt.plot(x_6x13, y_6x13, 'p-', color='orange', alpha=alpha, markersize=12, linewidth=4, label="6*13")
plt.grid(True, linestyle='-', alpha=0.5) plt.grid(True, linestyle='-', alpha=0.5)
plt.xlabel("Anchor Selection Number") # 横坐标名字 plt.xlabel("Anchor Proposal Number") # 横坐标名字
plt.ylabel("Precision@50 (%)") # 纵坐标名字 plt.ylabel("Precision@50 (%)") # 纵坐标名字
plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题 plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题
plt.savefig('anchor_num_testing_p.png', dpi=300) plt.savefig('anchor_num_testing_p.png', dpi=300)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 274 KiB

After

Width:  |  Height:  |  Size: 274 KiB

View File

@ -39,7 +39,7 @@ y_6x13 = [69.227, 72.876, 73.825, 74.077, 74.174, 74.210, 74.232, 74.249, 74.260
plt.plot(x_6x13, y_6x13, 'p-', color='orange', alpha=alpha, markersize=12, linewidth=4, label="6*13") plt.plot(x_6x13, y_6x13, 'p-', color='orange', alpha=alpha, markersize=12, linewidth=4, label="6*13")
plt.grid(True, linestyle='-', alpha=0.5) plt.grid(True, linestyle='-', alpha=0.5)
plt.xlabel("Anchor Selection Number") # 横坐标名字 plt.xlabel("Anchor Proposal Number") # 横坐标名字
plt.ylabel("Recall@50 (%)") # 纵坐标名字 plt.ylabel("Recall@50 (%)") # 纵坐标名字
plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题 plt.legend(loc="lower right", title="Polarmap Size", title_fontsize=mpl.rcParams['legend.fontsize']) # 图例标题
plt.savefig('anchor_num_testing_r.png', dpi=300) plt.savefig('anchor_num_testing_r.png', dpi=300)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 152 KiB

After

Width:  |  Height:  |  Size: 156 KiB

View File

@ -39,7 +39,7 @@ for label, props in data.items():
# 设置标题和标签 # 设置标题和标签
plt.grid(True, linestyle='-', alpha=0.5) plt.grid(True, linestyle='-', alpha=0.5)
plt.xlabel('Anchor Number') plt.xlabel('Anchor Proposal Number')
plt.ylabel('F1@50 (%)') plt.ylabel('F1@50 (%)')
# 添加图例,并调整图例中的标记大小 # 添加图例,并调整图例中的标记大小