FILTER.js
FILTER.js copied to clipboard
Things TODO
- Fix SVD implementation (both for column-arrays and row-arrays, transposed)
- Check and maybe fix if needed the BLAS routines
- Use asm.js in the implementation of BLAS and SVD
- Use ams.js in the implementation of some filter routines
- Optimise some filter routines (eg Morphological filters, kth Statistics filters, Convolution filters, connected components routines) if there are optimisations in references or by oneself
- Implement FFT, JADE algorithms
- Add gpu/GL support (WebGL, nodeGL)
- Implement some of the filters and algorithms in references (eg color tracker, MSER, LBP)
-
Fix SVD implementation (both for column-arrays and row-arrays, transposed)moved to another lib dedicated to linear algebra -
Check and maybe fix if needed the BLAS routinesmoved to another lib dedicated to linear algebra -
Use asm.js in the implementation of BLAS and SVDmoved to another lib dedicated to linear algebra -
Use ams.js in the implementation of some filter routinesDONE many filters implemented in web assembly -
Optimise some filter routines (eg Morphological filters, kth Statistics filters, Convolution filters, connected components routines) if there are optimisations in references or by oneselfDONE partially -
Implement FFT, JADE algorithms(JADE moved to another dedicated lib) -
Add gpu/GL support (WebGL, nodeGL)DONE almost all filters have GLSL versions - Implement some of the filters and algorithms in references (eg color detector, MSER, LBP) (connected components can act as color detector as well)