Skip to content

Commit

Permalink
Fix centered coordinates
Browse files Browse the repository at this point in the history
  • Loading branch information
Jurie Germishuys committed Oct 2, 2024
1 parent 04e7eb6 commit ec0c202
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kso_utils/zooniverse_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ def process_zoo_classifications(
int(i["y"])
if "y" in i
else (
int(i["y_center"] + 0.5 * i["height"])
int(i["y_center"] - 0.5 * i["height"])
if "y_center" in i
else None
)
Expand Down

0 comments on commit ec0c202

Please sign in to comment.