You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do we really need to parse every DICOM file before sending them to the client?
I think we can just pass through the raw data (Vec<u8>), unless we want to change some attributes (is there some kind of lazy parsing in dicom-rs so we do not need to parse the entire file?).
Maybe introduce a new config option validate: <false|true>, as validation of data before sending seems like a good idea?
The text was updated successfully, but these errors were encountered:
Do we really need to parse every DICOM file before sending them to the client?
I think we can just pass through the raw data (
Vec<u8>
), unless we want to change some attributes (is there some kind of lazy parsing indicom-rs
so we do not need to parse the entire file?).Maybe introduce a new config option
validate: <false|true>
, as validation of data before sending seems like a good idea?The text was updated successfully, but these errors were encountered: