Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/rohintangirala/eulerian-remote-heartrate-detection

Remote heart rate detection through Eulerian magnification of face videos
https://github.com/rohintangirala/eulerian-remote-heartrate-detection

bandpass-filter computer-vision eulerian-magnification fft heart-rate numpy opencv python scipy signal-processing

Last synced: 13 days ago
JSON representation

Remote heart rate detection through Eulerian magnification of face videos

Awesome Lists containing this project

README

        

# Remote Heart Rate Detection through Eulerian Magnification of Face Videos

An implementation of the Eulerian video magnification computer vision algorithm initially developed by MIT CSAIL. This program uses the method for the application of remotely detecting an individual's heart rate in beats per minute from a still video of their face.

Built with OpenCV, NumPy, and SciPy in Python 3

## Program organization:
The main.py file contains the main program that utilizes all of the other modules defined in the other code files
to read in the input video, run Eulerian magnification on it, and to display the results. The purposes of the other
files are described below:
- preprocessing.py - Contains function to read in video from file and uses Haar cascade face detection to select an ROI on all frames
- pyramids.py - Contains functions to generate and collapse image/video pyramids (Gaussian/Laplacian)
- eulerian.py - Contains function for a temporal bandpass filter that uses a Fast-Fourier Transform
- heartrate.py - Contains function to calculate heart rate from FFT results

## How to run:
To run the program, specify the path to the input video in the preprocessing.read_video() function on line 13 of
main.py. To alter the frequency range to be filtered, change the values assigned to freq_min and freq_max on lines 8
and 9.