Giter Site home page Giter Site logo

Comments (2)

gofal avatar gofal commented on June 5, 2024

Somehow the data has to be downloaded anyway.
The UnseekableStreamByteSource is just a helper class to avoid NotSupportedExceptions. but in fact, it reads the stream sequentially, stores it into a memorystream buffer and then does all the seeking within this buffer.

If you want to transcode a frame, then you still have to download the dataset containing all the metadata first, because otherweise you do not know where the frame starts. In case you have a multiframe image with many frames and you only want to access the first frame, then you could expect an efficient way by stopping downloading data after the first frame.
But in case you want to download any frame in the middle - or the last frame - then you always have to download the whole data anyway. Since it is a unseekable stream, you can never jump to the position of the frame, but you always have to read all the content until that frame.

I do not know your exakt infrastructure, but I guess, fo-dicom is not the right spot where you should try to optimize your network traffic, because the (only) goal of fo-dicom is to parse, handle and proces DICOM data.
You should enhance your server application where you then load the Dicom file in memory and then on request of the client only deliver the desired frame.

from fo-dicom.

bcarthic avatar bcarthic commented on June 5, 2024

@gofal , Thanks for your response, we do have caching mechanism at our server to send frame data. But we have issues when the file size is bigger and transcoding consumes lot of memory which results in OOM exception. I understand the goal of fo-dicom, I was trying to understand was there a better alternative.

from fo-dicom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.