Skip to content

Commit

Permalink
ecg gen: ROI bbox bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
deepanshi-s committed Jan 18, 2024
1 parent 4170ef9 commit c06e700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codes/ecg-image-generator/ecg_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@ def ecg_plot(
y1 = bb.y0*resolution/fig.dpi
x2 = bb.x1*resolution/fig.dpi
y2 = bb.y1*resolution/fig.dpi
text_bbox.append([x1, y1, x2, y2, leadName])
text_bbox.append([x1, y1, x2, y2, full_mode])


if(show_dc_pulse):
Expand Down

0 comments on commit c06e700

Please sign in to comment.