% 评测Qrs检测算法性能(wfdb / bxb)

function EvaluationQrsDet(file_name)
% 评测Qrs检测算法性能
clc;clear;close all;

% 数据所在的文件夹路径
fdir = 'G:\data\physionet-data\MIT\';
cd (fdir);

% 删掉上一次的结果,如果存在的话
if isfile('bxbReport.txt')
    delete('bxbReport.txt')
end

% atr 作为参考,pan作为测试结果,进行对比
report = bxb('100','atr','pan','bxbReport.txt');

% 自己和自己对比,结果肯定都对
report = bxb('100','atr','atr','bxbReport.txt');
report = bxb('100','pan','pan','bxbReport.txt');

% 人工参考结果和算法测试结果,颠倒位置观察一下
report = bxb('100','pan','atr','bxbReport.txt');

bxbReport.txt 内会有:

Beat-by-beat comparison results for record 100
Reference annotator: atr
     Test annotator: pan

               Algorithm
        n    s    v    f    q    o    x
   __

你可能感兴趣的:(生理信号分析,数据分析)