Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
Signed-off-by: bluna301 <[email protected]>
  • Loading branch information
bluna301 committed Aug 12, 2024
1 parent 9608cd7 commit 1f2142d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions monai/deploy/operators/dicom_series_selector_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ def _select_series(self, attributes: dict, study: DICOMStudy, all_matched=False)
if not attr_value:
matched = False
elif isinstance(attr_value, numbers.Number):
# logic for numerical tag matching:
matched = value_to_match == attr_value
elif isinstance(attr_value, str):
matched = attr_value.casefold() == (value_to_match.casefold())
Expand Down

0 comments on commit 1f2142d

Please sign in to comment.