OpenImaging / miqa-phase1

A web application for medical imaging quality assurance
MIT License
20 stars 8 forks source link

Improve experiment loading performance using itk.js WorkerPool. #42

Closed scottwittenburg closed 3 years ago

scottwittenburg commented 3 years ago

Using the WorkerPool, we can save the repeated loads of the heavy javascript (emscripten wrapped C++ library methods) associated with the imageio worker. Instead of reloading those 3 heavy files for each image we need to read, we can just load them as many times as we have workers in the pool, which should provide much faster experiment loading.

This is under development in #39