FILTER.js icon indicating copy to clipboard operation
FILTER.js copied to clipboard

Things TODO

Open foo123 opened this issue 9 years ago • 1 comments

  1. Fix SVD implementation (both for column-arrays and row-arrays, transposed)
  2. Check and maybe fix if needed the BLAS routines
  3. Use asm.js in the implementation of BLAS and SVD
  4. Use ams.js in the implementation of some filter routines
  5. Optimise some filter routines (eg Morphological filters, kth Statistics filters, Convolution filters, connected components routines) if there are optimisations in references or by oneself
  6. Implement FFT, JADE algorithms
  7. Add gpu/GL support (WebGL, nodeGL)
  8. Implement some of the filters and algorithms in references (eg color tracker, MSER, LBP)

foo123 avatar Jan 11 '17 14:01 foo123

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

foo123 avatar Aug 23 '23 16:08 foo123