继续优化色准测试结果显示模块

This commit is contained in:
xinzhu.yin
2026-05-27 16:26:19 +08:00
parent 59c9424218
commit c63b9ef615
6 changed files with 428 additions and 37 deletions

View File

@@ -634,16 +634,6 @@ def recalculate_gamut(self: "PQAutomationApp"):
# 10. 重新绘制色域图
self.plot_gamut(rgb_data, coverage_xy, test_type)
self.log_gui.log("色域图已重新绘制", level="success")
self.log_gui.log("=" * 50, level="separator")
messagebox.showinfo(
"成功",
f"色域图已根据新参考标准 {reference_standard} 重新绘制!\n\n"
f"XY 覆盖率: {coverage_xy:.1f}%\n"
f"UV 覆盖率: {coverage_uv:.1f}%",
)
except Exception as e:
self.log_gui.log(f"重新计算失败: {str(e)}", level="error")
self.log_gui.log(traceback.format_exc(), level="error")