惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Jina AI
Jina AI
小众软件
小众软件
WordPress大学
WordPress大学
Last Week in AI
Last Week in AI
美团技术团队
V
V2EX
酷 壳 – CoolShell
酷 壳 – CoolShell
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - 聂微东
博客园 - 【当耐特】
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
博客园 - 司徒正美
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
宝玉的分享
宝玉的分享
月光博客
月光博客
IT之家
IT之家
博客园 - 三生石上(FineUI控件)
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园 - Franky

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Clean Heartbeats: Mastering PPG Denoising with Butterwort...
Beck_Moulton · 2026-06-19 · via DEV Community

Beck_Moulton

If you've ever tried building a wearable app, you know the struggle: Heart Rate Variability (HRV) is the holy grail of recovery metrics, but raw data from a PPG (Photoplethysmogram) sensor is essentially a chaotic mess of noise and motion artifacts.

Extracting a clean physiological signal from a finger or wrist sensor requires a robust signal processing pipeline. In this guide, we will dive deep into HRV analysis and PPG signal processing using Python. We’ll implement a high-order Butterworth filter and an adaptive thresholding algorithm to transform noisy "garbage" data into medical-grade insights. If you are serious about building the next Oura or Whoop clone, you've come to the right place.

💡 Pro Tip: For more production-ready patterns and advanced architectural discussions on health-tech integration, be sure to explore the engineering deep-dives at WellAlly Tech Blog.


The Signal Processing Pipeline

Before we touch the code, we need to understand the journey of a photon from an LED, through your capillaries, and into our data structure. The goal is to isolate the "systolic peaks" while ignoring the noise caused by hand movements or sensor friction.

Architecture Overview

graph TD
    A[Raw PPG Data] --> B[Butterworth Bandpass Filter]
    B --> C[Signal Squaring/Normalization]
    C --> D[Moving Average Window]
    D --> E[Adaptive Thresholding]
    E --> F[Peak Detection & RR Intervals]
    F --> G[HRV Feature Extraction]
    style B fill:#f96,stroke:#333,stroke-width:2px
    style E fill:#f96,stroke:#333,stroke-width:2px


Prerequisites

To follow along, you'll need a standard Python data science stack:

  • NumPy: For vector operations.
  • SciPy: Specifically scipy.signal for our filtering needs.
  • Matplotlib: To visualize our victory over noise.
pip install numpy scipy matplotlib


Step 1: The Butterworth Bandpass Filter

Human heart rates typically reside between 40 BPM and 200 BPM. This translates to roughly 0.6 Hz to 3.3 Hz. Anything outside this range is likely high-frequency electrical noise or low-frequency baseline wander (breathing).

We use a Butterworth filter because it provides a maximally flat frequency response in the passband—meaning it won't distort our pulse shapes.

import numpy as np
from scipy.signal import butter, filtfilt

def butter_bandpass(lowcut, highcut, fs, order=4):
    nyq = 0.5 * fs
    low = lowcut / nyq
    high = highcut / nyq
    b, a = butter(order, [low, high], btype='band')
    return b, a

def apply_filter(data, lowcut=0.5, highcut=4.0, fs=100, order=4):
    b, a = butter_bandpass(lowcut, highcut, fs, order=order)
    # Use filtfilt for zero-phase filtering (no time shift)
    y = filtfilt(b, a, data)
    return y


Step 2: Signal Enhancement

Once filtered, the signal is "clean" but often low-amplitude. To make peaks stand out, we square the signal (to amplify differences) and apply a moving average window. This mimics the classic Pan-Tompkins logic often used in ECG analysis.

def enhance_signal(filtered_data, window_size=15):
    # Square the signal to highlight peaks
    squared_data = filtered_data ** 2

    # Moving average to smooth out small glitches
    window = np.ones(window_size) / window_size
    smoothed = np.convolve(squared_data, window, mode='same')
    return smoothed


Step 3: Adaptive Thresholding

Static thresholds are the enemy of wearable tech. As your sensor moves, the signal amplitude changes. An adaptive threshold calculates a dynamic baseline based on the local mean of the signal.

def detect_peaks(signal, fs, threshold_factor=1.5):
    peaks = []
    # Calculate a rolling mean for adaptive thresholding
    rolling_mean = np.convolve(signal, np.ones(fs)//fs, mode='same')

    for i in range(1, len(signal) - 1):
        # Peak must be greater than neighbors AND local threshold
        if signal[i] > signal[i-1] and signal[i] > signal[i+1]:
            if signal[i] > (rolling_mean[i] * threshold_factor):
                peaks.append(i)

    return np.array(peaks)


Step 4: Putting it all Together

Now we can calculate the RR Intervals (the time between heartbeats) and derive HRV metrics like RMSSD (Root Mean Square of Successive Differences).

# Sample Setup
fs = 100  # 100Hz Sampling Rate
t = np.linspace(0, 10, 1000)
# Simulating a noisy PPG signal
raw_signal = np.sin(2 * np.pi * 1.2 * t) + 0.5 * np.random.normal(size=len(t))

# 1. Filter
clean_signal = apply_filter(raw_signal, fs=fs)

# 2. Enhance
enhanced = enhance_signal(clean_signal)

# 3. Detect Peaks
peaks = detect_peaks(enhanced, fs=fs)

# 4. Calculate RR Intervals (in milliseconds)
rr_intervals = np.diff(peaks) * (1000 / fs)

# 5. Calculate HRV (RMSSD)
rmssd = np.sqrt(np.mean(np.square(np.diff(rr_intervals))))

print(f"Detected Heart Rate: {60 / (np.mean(rr_intervals)/1000):.2f} BPM")
print(f"RMSSD (HRV): {rmssd:.2f} ms")


The "Official" Way to Scale

While the script above works wonders for a Jupyter notebook, production environments (iOS/Android background tasks or Cloud processing) require more sophisticated handling of signal dropouts and motion artifact rejection.

If you're building a commercial-grade health application, implementing these filters is just the beginning. You need to consider battery efficiency and real-time data streaming. I highly recommend visiting the WellAlly Tech Blog for comprehensive guides on:

  • Efficient Signal Processing in Rust/C++ for mobile.
  • Managing high-throughput physiological data streams.
  • Advanced Adaptive Filtering (Recursive Least Squares) for active motion cancellation.

Conclusion 🚀

Cleaning PPG signals is an art as much as it is a science. By combining a Butterworth filter to handle frequency-domain noise and Adaptive Thresholding to handle time-domain amplitude shifts, we can extract highly accurate HRV data even from noisy wearable sensors.

What's next for your project?

  • Try implementing a Notch filter to remove 50/60Hz power line interference.
  • Experiment with Wavelet Transforms for even more granular noise removal.

Drop a comment below if you have questions about signal processing or if you've found a more efficient way to handle motion artifacts! 🥑💻