ATHeartRate icon indicating copy to clipboard operation
ATHeartRate copied to clipboard

iOS heart rate detection using a device's camera

Results 2 ATHeartRate issues
Sort by recently updated
recently updated
newest added

Hi, I was using your code gist to calculate the heart rate from iPhone camera but it seems I am missing some essential part here. I am setting frame rate...

So I implemented all the functions required below like this: -(void)heartRateStart { NSLog(@"started!"); } - (void)heartRateUpdate:(int)bpm atTime:(int)seconds; { NSLog(@"Value is %i", bpm); } -(void)heartRateEnd { NSLog(@"started!"); } Which function actually...