Skip to content

Commit

Permalink
radius tuple typo!
Browse files Browse the repository at this point in the history
  • Loading branch information
birm authored May 15, 2024
1 parent 4443686 commit c1d167f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DicomAnnotUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ def dicomToCamic(annot_path, image_dimensions, output_file, source_url=None, sli
newFeature = deepcopy(featureTemplate)
newFeature['geometry']['type'] = "Ellipse"
newFeature['geometry']['coordinates'] = [center_x, center_y]
newFeature['geometry']["radius"] = [major_axis_length,minor_axis_length],
newFeature['geometry']["radius"] = [major_axis_length,minor_axis_length]
newFeature['geometry']["rotation"] = rotation
newFeature['bound']['type'] = "Point"
newFeature['bound']['coordinates'] = [center_x, center_y]
Expand Down

0 comments on commit c1d167f

Please sign in to comment.