Using OpenCV as a stress detector
Hi all,
I know that openCV is used mainly for vision processing. However, I intend to actually only use the SVN or classifiers in the API for stress detection. I have information from three biosignals which I can extract detailed characteristics such as mean, standard deviation and the such.
Using these inputs, can I form a vector of information for each second that I can input to the SVN or classifiers in the API? How likely would you think this implementation will succeed?? I have limited experience with classifiers and learning algorithms so any help is much appreciated.
Thanks!
How many different situations do you want to distinguish? A priori I would think this is a N-dimensional clustering problem...
Two different situations where you are stressed and not stressed. Basically, I have 3 different sensors that extract information about the person. Based on these 3 sensors, I can calculate deviation, variance, and etc. I am planning to have 3 features for each sensor which gives me a 9 dimensional vector. I am planning to use PCA to project them into a lower dimension and then perform an LDA on the output of the PCA. Is this possible in OpenCV?