The script annotations - present in both versions of stage5 - contains some lines of code for saving a plot:
# ToDo
if args.output_img is not None:
save_plot(args.output_img)
In fact, as highlighted by the "ToDo" string, it is an empty plot, and it is saved as such. Before that, a .csv is however created, and correctly filled and saved. Since this block is meant for the creation of such annotation file, my guess is that a plot is not necessary, and hence those lines should be removed, to avoid users to be left with an empty canvas.