Closed manyids2 closed 2 years ago
https://github.com/NKI-AI/dlup/blob/d69208c3472085d371f540ae742222ad27f7430c/dlup/viz/plotting.py#L104
bbox = bbox[0] bbox_color = bbox[1]
here, we modify bbox on the first line, then set the color using the modified bbox... so actually we are throwing away bbox[1] the order of the lines should be interchanged.
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 15 days
https://github.com/NKI-AI/dlup/blob/d69208c3472085d371f540ae742222ad27f7430c/dlup/viz/plotting.py#L104
bbox = bbox[0] bbox_color = bbox[1]
here, we modify bbox on the first line, then set the color using the modified bbox... so actually we are throwing away bbox[1] the order of the lines should be interchanged.