Hacker News new | ask | show | jobs
by kspacewalk 2551 days ago
Where would you use the functionality of converting DICOM into protocol buffers?
1 comments

Perhaps sending structured slices of dicoms to downstream microservices (or clients), Tensorflow inputs, perhaps in other places too? Proto representations of data can be nice because they are super easy to unpack (way easier than a dicom directly) and offer language-native data containers to work with the data. But ultimately you could always just deal with the dicom, or store the data in some other representation (JSON, etc).