https://i.imgur.com/ZnWnu8a.png

PulseTracker is a simple Python library used to monitor heart rate using video.


Basic usage of PulseTracker:

import pulse as p
pulse = p.Pulse()
pulse.video_to_frames("./path/to/video.mp4")
pulse.bpm()

Usage of PulseTracker with PulseBox:

import pulse as p
testing_uid = "1kzd0DmeunLGEeB0nWLFFaIfuFZn"
pulse = p.Pulse()
pulse.pulsebox_to_frames(testing_uid)
pulse.bpm()

The User GuideΒΆ

This part of the documentation, which is mostly prose, begins with some background information about PulseTracker, then focuses on step-by-step instructions for getting the most out of this library.