Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rahulremanan/21341f4bf43f2183862fc1786a4a8108 to your computer and use it in GitHub Desktop.
Save rahulremanan/21341f4bf43f2183862fc1786a4a8108 to your computer and use it in GitHub Desktop.
A DICOM reader generator function
def dicom_generator(dicom_chunks):
i = 0
while True:
_inp = dicom_chunks[i]
_img = read_dicom(_inp)
yield _img
i += 1 # Exploiting the stateful nature of generators
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment