I want to develop an Android app with OpenCV to measure my heart rate (finger on sensor). As I could figure out with use of org.opencv.highgui.VideoCapture, I only get 8-10 frames per second (fps).
How can I get a higher fps-rate?
I do not want to display the image, I (only) want to record for 15 seconds, resize it with a pyramid (five times) and store it into a cv::Mat for further processing. Is there a way to receive 25-30 fps and how do I transfer it frame-by-frame into a cv::Mat?