Independent Component Analysis (ICA) #2867
Replies: 3 comments 9 replies
-
|
Specifically, I'm trying to write an algorithm with dlib which extract pulse rate from a video. The algorithms typically do:
Something like that. The bit I'm missing is ICA. |
Beta Was this translation helpful? Give feedback.
-
|
It feels like dlib already has all the necessary tools to do this. E.g. using the kernel solvers |
Beta Was this translation helpful? Give feedback.
-
|
https://en.wikipedia.org/wiki/FastICA spells the algorithm out. Could use this over trying to copy-paste sklearn or some other implementation. Hopefully, the unit tests would show near identical results when using dlib or sklearn on same input data. |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to do ICA in dlib using some of the traditional machine learning tools? Something that mirrors https://scikit-learn.org/stable/modules/generated/sklearn.decomposition.FastICA.html
Beta Was this translation helpful? Give feedback.
All reactions