Is itk.js support "StreamingImageFilter"?

Hello,

I am currently working on 3D volume rendering using vtk.js and itk.js. I encountered an issue when rendering a large-sized dataset, which is related to MemoryAllocationError. After some investigation, I discovered a potential solution using the StreamingImageFilter. My question is: Is this filter directly available in itk.js?

Thank you.

Hell @Mohammed_AboArab ,

Welcome to ITK :sun_with_face:

A good approach is to break the image into chunks, representing it as a multiscale OME-Zarr image. There is support for this in the @itk-viewer/io package. Then, process the chunks in parallel with the ITK-Wasm WebWorkerPool.

Hello @matt.mccormick
Thank you so much!
I will check it out.

1 Like