Skip to content

Commit

Permalink
Fix the name of a centroid feature (#1119)
Browse files Browse the repository at this point in the history
Resolves #1118
  • Loading branch information
manthey authored Jul 5, 2024
1 parent 5cf67c8 commit aa93bfa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion histomicstk/features/compute_nuclei_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def process_nucleus(nprop, im_nuclei_bool):
'Identifier.Ymin': nprop.bbox[0],
'Identifier.Xmax': nprop.bbox[3],
'Identifier.Ymax': nprop.bbox[2],
'Identifier.Centroid': nprop.centroid[1],
'Identifier.CentroidX': nprop.centroid[1],
'Identifier.CentroidY': nprop.centroid[0],
}
if im_nuclei_bool:
Expand Down

0 comments on commit aa93bfa

Please sign in to comment.