ISEPOS-2373 Add coordinates to SVG overlay files #10

Merged
mieszkomakuch merged 10 commits from ISEPOS-2373-add-coordinates-for-svg-overlay into master 2025-06-05 14:26:36 +02:00
Showing only changes of commit 22fc9f7c07 - Show all commits

View File

@ -505,7 +505,8 @@ verbose: {verbose}")
# Save the figure
fig.canvas.draw()
plt.savefig("overlay_" + str(j) + ".svg", bbox_inches="tight", pad_inches=0, transparent=True)
svg_path = f"overlay_{j}.svg"
plt.savefig(svg_path, bbox_inches="tight", pad_inches=0, transparent=True)
plt.close(fig)