(obj, key)
| 1936 | from monai.transforms.compose import OneOf |
| 1937 | |
| 1938 | def _get_data(obj, key): |
| 1939 | return obj if key is None else obj[key] |
| 1940 | |
| 1941 | # if the starting point is a string (e.g., input to LoadImage), start |
| 1942 | # at -1 since we don't want to count the string -> image conversion. |
no outgoing calls
no test coverage detected
searching dependent graphs…