-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for downloading files from a DICOMweb server #1309
Comments
One thing that complicates this is that, in the assetstore, currently each item is associated with a series, and there is a single file per item. However, each series typically contains more than one DICOM file (which is often referred to as an "instance"). We could, for instance, use this function to retrieve all instances in a series. However, this is likely to return multiple DICOM datasets (each of which can be written to a file). Alternatively, this function can be used to retrieve a single instance (a.k.a., a single DICOM dataset). Perhaps we should modify our assetstore model to make separate files for each instance, so we can more easily support downloading files? For actually downloading the files themselves (as raw data in chunks): the |
If we used the |
This will require implementing this function.
It would be beneficial to support offsetting, if possible.
Note the discussion here.
The text was updated successfully, but these errors were encountered: