Consider different Multidimensional Arrays Implementations
#37 opened on Jun 12, 2016
Description
So after looking through the optimizations of this library, we are more or less at a local minimum when it comes to our naive representation of multidimensional arrays. They are currently untyped and simply use the classic Array of Array implementation. We should consider ways of storing our arrays in alternative ways and possibly typing them to get better performance. There is a case to be made that we might want to implement something similar to NDArray, but doing so it contingent on issue #35 . LU decomposition still takes up a rather large portion of the run time.
Currently here are three areas of optimization to focus on:
- track() inside of CLMR tracker
- getPupilFeatures()
- LUDecomposition() and the entire ridge methods
Optimizing these areas will be important if we want to make it practical to run on mobile.
Some reading on the topic: https://0fps.net/2013/05/22/implementing-multidimensional-arrays-in-javascript/ https://github.com/mikolalysenko/ndarray-experiments