Skip to main content

ORIGINAL RESEARCH article

Front. Physiol., 15 July 2024
Sec. Computational Physiology and Medicine
This article is part of the Research Topic Advances in Artificial Intelligence-Enhanced Electrocardiography: A Pathway towards Improved Diagnosis and Patient Care. View all articles

A simple and effective deep neural network based QRS complex detection method on ECG signal

  • Central Research Institute, Guangzhou Shiyuan Electronics Co., Ltd., Guangzhou, China

Introduction: The QRS complex is the most prominent waveform within the electrocardiograph (ECG) signal. The accurate detection of the QRS complex is an essential step in the ECG analysis algorithm, which can provide fundamental information for the monitoring and diagnosis of the cardiovascular diseases.

Methods: Seven public ECG datasets were used in the experiments. A simple and effective QRS complex detection algorithm based on the deep neural network (DNN) was proposed. The DNN model was composed of two parts: a feature pyramid network (FPN) based backbone with dual input channels to generate the feature maps, and a location head to predict the probability of point belonging to the QRS complex. The depthwise convolution was applied to reduce the parameters of the DNN model. Furthermore, a novel training strategy was developed. The target of the DNN model was generated by using the points within 75 milliseconds and beyond 150 milliseconds from the closest annotated QRS complexes, and artificial simulated ECG segments with high heart rates were generated in the data augmentation. The number of parameters and floating point operations (FLOPs) of our model was 26976 and 9.90M, respectively.

Results: The proposed method was evaluated through a cross-dataset test and compared with the sophisticated state-of-the-art methods. On the MITBIH NST, the proposed method demonstrated slightly better sensitivity (95.59% vs. 95.55%) and lower presicion (91.03% vs. 92.93%). On the CPSC 2019, the proposed method have similar sensitivity (95.15% vs.95.13%) and better precision (91.75% vs. 82.03%).

Discussion: Experimental results show the proposed algorithm achieved a comparable performance with only a few parameters and FLOPs, which would be useful for the application of ECG analysis on the wearable device.

1 Introduction

The electrocardiograph (ECG) represents the electrical activity of heartbeat. It is a widely-used tool for examining the cardiovascular diseases (CVDs) due to the characteristic of low-cost and painless. A typical ECG waveform of heartbeat is composed of several characteristic waveforms, such as the P wave, QRS complex and T wave. It is thought that the amplitude, duration, contour and number of the waveforms, and the interval between the peak of waveforms provide fundamental information for the monitoring and diagnosis of CVDs (Taylor, 2008). Because the QRS complex is the most prominent waveform, accurate detection of the QRS complex is essential in the ECG analysis algorithms (Kohler et al., 2002).

Many algorithms for the QRS complex detection have been proposed since the last several decades. Most of detectors can be divided into two fundamental parts, the preprocessing and the identification (Kohler et al., 2002). In the preprocessing stage, the QRS complex was enhanced and the noise was attenuated. In the identification stage, the QRS complex was determined and the false posive were removed. For example, in the P&T method (Pan and Tompkins, 1985), one of the most popular algorithms, after bandpass filtering of the ECG signal, the QRS complex was highlighted via the procedure of five-point derivative, squaring and moving window integration. Eventually the QRS complex was determined by adaptively thresholding on the preprocessed signal and filtered ECG signal. Hamilton et al. (Hamilton and Tompkins, 1986) slightly modified the preprocessing technique of P&T’s method, which determine the QRS complex by more complex rules. It is reported (Liu F. et al., 2018) that although the traditional signal processing based methods can accurately locate the QRS complex on the noise-free ECG signal, the performance of such algorithms significantly decreases on the ECG segments with severe artifacts.

Recently, the deep learning (DL) techniques have been widely used to improve the performance of QRS comple detection. The powerful representation ability of the DL model, combined with the end-to-end training process enable it to more effectively enhance and identify the QRS complex. In the work (Zahid et al., 2022) the detection of QRS complex was formulated as a 1D segmentation task, and the U-Net, a popular medical image segmention approach, was used to enhance the QRS complex. The model produce a high response at the location of QRS complex, and a low response elsewhere. The QRS complex were determined by a given threshold. Furthermore, considering that the bidirectional Long Short Term Memory (BLSTM) can extract features during a long period, in work (He et al., 2021), the QRS complex were enhanced by the DNN model by combining the U-net with BLSTM.

It is reported that the size of receptive field is a crucial issue in the visual tasks, and enlarging the receptive field can improve the accuracy of the location method (Liu Y. et al., 2018). The work (Lee et al., 2019) demonstrated the DL model with a sufficiently large-sized receptive field that can cover adjacent heartbeats achieved good performance on the capacity ECG signal. A similar sized receptive field would also be required for the detectors applied on the ECG signal. However, most traditional CNN based QRS complex detectors were derived from image processing techniques, and adopted small-sized kernel (about 3 or 5 samples). Although several convolutional layers and pooling layers were used to build the model, the receptive field of model was still relatively small. The LSTM-based method can extract features over a long period, but it has a large number of parameters, which would be disadvantageous for the generalization ability of detector.

On the other hand, although the accurate identification of the endpoints of the object is critical in the segmentation task, it would be unnecessary for the QRS complex detection, especially in the training stage. Since most ECG datasets lack annotations of QRS complex fiducial points, a common approach for generating the target vector is to define the QRS complex region with a fixed range around the location of annotated QRS complex, where the samples within the region are labeled as positive and those outside the region as negative. However, the durations of QRS complex vary among different individuals, especially for patients with CVDs. Therefore, the fixed range is difficult to precisely delineate the QRS complex. This leads to assigning labels to adjacent samples with similar presence, which could degrade the performance of the detector.

In order to address the above problems, a simple QRS detection method was developed and an innovative training strategy was designed in the work. The DNN model is based on fully convolutional network (FCN) architecture, without the application of sophisticated modules such as LSTM. The model has a kernel size of 19 samples and operates at a sample rate of 250 Hz. This allows the model to have a maximal receptive field of approximately 2 s, which covers the longest interval between normal heartbeats (Taylor, 2008). Additionally, considering that the joint analysis of multi-lead signal will provide better robustness in the presence of noise in any single lead, the model is designed to have dual input channels. When the model was operated on the ECG signal with single lead, the dat in the second channel of the model is replicated of the data from the first channel. In the training, the points on the boundary of the QRS complex were excluded to generate the target vector for the DNN model. Besides, due to the limited availability of high heart rate segments in the existing datasets, the artificially simulated ECG segments of fast heart rates generated in the data augmentation, Seven public ECG datasets were used to evaluate the proposed methods, and experimental results show that the proposed method achieved a good performance on the cross-dataset test, making it useful for wearable ECG devices. The main contributions of this work were as follows: 1. A FCN based model with a large-sized kernel, allowing for a maximal receptive field of approximately 2 s 2. Incorporation of dual-lead ECG signal analysis. 3. Elimination of the border points of the QRS complex in the generation of the target vector. 4. Inclusion of artificially simulated ECG segments with fast heart rates in the data augmentation.

The rest of this paper is organized as follows. Section 2 introduced the recent QRS complex detection method. Section 3 presents the proposed QRS complex detection method. Section 4 gives the experimental results of developed method and several existing state-of-the-art detectors. Section 5 discusses the method. And Section 6 concludes the work.

2 Recent work

The enhancement and determination of the QRS complex are the two primary stages in QRS complex detection, and several advancements have been made in these approaches. For the traditional signal processing-based detectors, the QRS complex was enhanced by using linear or non-linear filters and determined based on sophisticated decision rules. In the work (Khamis et al., 2016), the feature signal of the QRS complex was generated by multiplying the signal derivative and amplitude envelope, and the threshold was calculated using a morphological closing operation with maximum and minimum filters. A signal quality mask was also utilized to eliminate false positives. In the study (Orlandic et al., 2019), an enhancement filter based on relative-energy, which is the ratio between the energies of a long sliding window and a short sliding window, was designed, and the QRS complex was identified using a hysteresis comparator with two adaptive thresholds. In the work (Rodrigues et al., 2021), a double derivative-based pre-processing method was employed to enhance the QRS complex, and the thresholds were determined using the finite state machine approach. In the study (De Giovanni et al., 2023), a Bayesian filter integrated with clustering techniques was applied to compute the expected position of the QRS complex.

Due to the power representation of deep learning model, the deep learning technique was applied to detect the QRS complex. Some researchers have designed detector based on ECG segments. In these study, the ECG signals are divided into several segments of fixed length, which are then fed to a deep model. In the publication (Šarlija et al., 2017), the ECG signal was splitting into segments of 400 milliseconds. The model consisted of two convolutional layer and two fully connected layers. Similarly, in the publication (Wang and Zou, 2019) the ECG signal was also divided into 400 milliseconds segments. The model utilized two parallel residual networks with kernel sizes of 7 samples and 3 samples respectively. In the work (Xiang et al., 2018), the ECG signal was segmented into slices of 56 samples. After averaging and difference operation, a two-level convolutional neural network (CNN) was designed to learn the features at the part-level and object-level of the QRS complex, The resulting features were concatenated and passed through a multi-layer perceptron (MLP) for the classification. The slice-based method can capture the local characteristic of QRS complex. However, the contextual information of segments is lost for these approaches.

In order to further improve the performance, the utilization of medical image segmentation technique and LSTM-based approaches has become increasingly popular. In the work (Zahid et al., 2022) The U-Net was employed to segment the QRS complex. Cai et al. (Cai and Hu, 2020) utilized the BLSTM after the multiple parallel dilated convolutional blocks to predict the QRS complex. In the work (He et al., 2021), The DNN model enhanced the QRS complex by combining the U-Net with BLSTM.

3 Materials and methods

Seven public datasets were used in the experiments, five of which from the PhysioNet (Goldberger et al., 2000): MIT-BIH Arrhythmia (Moody and Mark, 2001) (AR), MIT-BIH Supraventricular Arrhythmia Database (SV) (Greenwald, 1990), MIT-BIH Noise Stress Test (GB et al., 1984) (NST), MIT-BIH ST Change (STC) (P, 1983) and European ST-T (ST-T) (Taddei et al., 1992). Additionally, the High Intensity Exercise (HIE) (De Giovanni et al., 2023) and the dataset of 2nd China Physiological Signal Challenge (CPSC 2019) (Hongxiang et al., 2019) were include. For the AR dataset, 44 non-pace records were separated into two subsets (AR_DS1 and AR_DS2), according to the division scheme proposed by the work (de Chazal et al., 2004). The NST dataset was created by adding calibrated amplitude of noise on the two clean records (118 and 119) from the AR dataset, with the SNRs of −6 db, 0 db, 6 db, 12 db, 18 db and 24 db for the noisy segments. Record 315 in STC and Record e0204 in ST-T were not used in the experiment. The information of these datasets was summarized in Table 1.

Table 1
www.frontiersin.org

Table 1. The datasets used in experiments.

The flowchart of our method is illustrated in Figure 1. First, the raw ECG signal was preprocessed. Then, the signal was fed into the DNN model and the heat maps were generated, which indicated the probability of each point belonging to the QRS complex. Finally, QRS complexes were determined based on the heat maps, and the locations of the predicted QRS complex were saved.

Figure 1
www.frontiersin.org

Figure 1. The flowchart of proposed method.

In the preprocessing stage, the input ECG signal was resampled to 250Hz, and the noise was attenuated using a butterworth filter with a band-pass range of 0.5–35 Hz. At last, Z-score normalization was performed on each lead. For the raw ECG signal with a single lead, the second input channel of the DNN model was created by duplicating the preprocessed signal. Figures 2A, B illustrate the original ECG signal and the preprocessed result, respectively. In both figures, the QRS complexes are indicated by the red circles.

Figure 2
www.frontiersin.org

Figure 2. The result of preprocessed, the QRS complexes were marked by red circles. (A) Original ECG signal. (B) Preprocessed ECG signal.

The proposed DNN model was composed of two modules, a feature pyramid network (FPN) (Lin et al., 2017)-based backbone for extracting features maps at three resolutions, and a location head for predicting the probability of each points belonging to the QRS complex. Figure 3 gives the structure of our model. In the FPN, there were six residual blocks and six convolutional layers. The convolutional layers following the residual blocks were used to adjust the channels, so their kernel size were 1 (k = 1), while the kernel size for other convolutional layers was 19 (k = 19). The number of channels in the residual blocks were 32 (c = 32), 64 (c = 64), and 128 (c = 128). The instance normalization (IN) and linear rectification function (relu) were used as the normalization and activation function, respectively. Downsampling was performed using convolution with a kernel size of 1 and stride of 2, and upsampling was achieved through the nearest neighbour interporation. In order to reduce the number of parameters, depthwise convolution was employed in the convolutional layers with the kernel size of 19 except the first one.

Figure 3
www.frontiersin.org

Figure 3. The architecture of proposed deep learning model.

The location head consisted of a convolutional layer with kernel size of 5 and a single channel, a sigmoid layer and an average pooling layer with size of 9. Let the size of input ECG signal be l×2, where l represents the length. The length of three heat maps were l, (l/2) and (l/4) respectively. The three heat maps are shown in Figures 4A–C, where the QRS complexes are indicated by the red circles. The DNN model generated a high response (close to 1.0) for the points near the QRS complexes. In total, the number of parameters and the floating point operations (FLOPs) of proposed model was 26976 and 9.90 million respectively.

Figure 4
www.frontiersin.org

Figure 4. The heat maps generated by proposed DNN model, the annotated QRS complexes were marked by red circle. (A) Heat map 1st. (B) Heat map 2nd. (C) Heat map 3rd.

In the determination of the QRS complex, local maximal points with a response greater than the given threshold (0.5 in the experiment) were initially considered as the location of QRS complex candidates. Next, the process of non-maximal suppression (NMS) was performed to remove the false positives, as follows: 1. A check-list was generated by sorting the candidates in descending order based on their probability. 2. The candidate with the highest probability in the check-list was marked as the true positive, and its location was saved. 3. Other candidates close to the current candidate within the threshold (200 milliseconds in the experiment) were marked as false positives. 4. The true positive and false positives were removed from the check-list. 5. Steps 2-4 were repeated until the check-list was empty. Figure 5 illustrates the result of QRS complex detection on the ECG signal. The annotated QRS complexes and the predicted results were marked with red circles and red dashed vertical lines, respectively. The proposed method can accurately detect the QRS complex on the noisy ECG segment.

Figure 5
www.frontiersin.org

Figure 5. The result of QRS complex detection on ECG signal, the predicted and annotated QRS complex were marked by the red vertical dashed line and red circle respectively.

In the training, the targets of the DNN model were created by relabeling the annotations on vectors with the same size as the heat maps. For points between the first QRS complex and the last QRS complex on the target vectors, if the distance to the closest QRS complex was less than 75 milliseconds, its value was set to 1 (positive). Otherwise, if the interval was more than 150 milliseconds, the value of the point was set to 0 (negative). The points that were neither positive nor negative were set to −1. Additionally, in order to avoid the influence of incomplete QRS complexes on training, for the points located in the initially 200 milliseconds and the last 200 milliseconds, their values were also set to −1. The points whose value was −1 were ignored when calculating the loss. The target of the DNN model is shown in Figure 6, where the QRS complexes are indicated by red circles.

Figure 6
www.frontiersin.org

Figure 6. The target of DNN model, the QRS complexes were marked by the red circle.

The data augmention was performed from the three aspects. Firstly, artificially simulated ECG signals were generated, with BPM (beats per minute) ranging from 200 to 280. The range of amplitude and duration of the QRS complex was from 3 to 5 mV and from 50 to 100 milliseconds, respectively. The white noise with a signal-to-noise ratio (SNR) ranging from 4 db to 12 db were mixed with the generated ECG signals. Figure 7 gives a simulated ECG segment with a BPM of 240 and SNR of 6 db. The amplitude and duration of the QRS complex were 5 mV and 80 millisecond, respectively. Secondly, the ECG signal was mixed with three types of noise: baseline wandering (BW), muscle artifact (MA) and electrode motion artifact (EM). The sinusoidal function was used as BW, with its frequency determined by random sampling from three Gaussian distributions. The centers of the Gaussian distribution were 0.05, 0.15 and 0.25, respectively, and the standard deviations were one-third of center. The white noise was used as MA, and the EM was created by filtering the MA with a band-pass filter ranging from 5 Hz to 15 Hz. Thirdly, the signal from any channel was flipping, and the order of the channels in the signal was changed.

Figure 7
www.frontiersin.org

Figure 7. Simulated ECG segment with a bpm of 240 and SNR of 6 db, the amplitude and duration of the QRS complex were 5 mV and 80 millisecond.

4 Experimental results

The proposed DNN model was developed using the PyTorch (Paszke et al., 2019), a popular deep learning library. The BCE (binary cross entropy) was calculated as the loss function, and the Adam optimizer was selected with a learning rate of 1e-3. The model was trained for 5 epochs using a batch size of 32 and weight decay of 1e-8, and the model that achieved the lowest error on the validation data was saved as the best model and used for test. The algorithm was implemented on the workstation with an Intel Xeon CPU E5-2650 and a GeForce GTX 1080 Ti.

In the experiments, our algorithm was trained and validated on the AR_DS2 dataset and tested on other datasets. The records used for the training and validation were 100, 103, 105, 111, 113, 117, 121, 123, 200, 202, 210, 212, 213, 214, 219 and 221, 222, 228, 231, 232, 233, 234, respectively. The signals from the training and validation data were sliced into segments with a length of 60 s, and the signals from test data was directly fed to the algorithm without being segmented.

According to the EC57 standard (AAMI, 2012), the beats can be categorized into five types: N (beat that does not fall into the types of S, V, F or Q), S (supraventricular ectopic beat), V (ventricular ectopic beat), F (fusion of a ventricular and a normal beat) and Q (pace, fusion of a pace and a normal beat, or beat cannot be classified). If the distance of the predicted QRS complex to the closest annotated beat (QRS complex) is less than ±0.15 s, it is treated as the true positive (TP). Otherwise, it is considered as a false positive (FP), and the missed annotated beat is marked as a false negative (FN). The sensitivity (Sen), presion (Pre), error rate (Err), false negative rate (Fnr) of each type of beat, as well as the margin of TP to the closest annotated beat (mean±std) were calculated to assess the performance, as shown by Eq. 1.

Sen=TPTP+FN×100Pre=TPTP+FP×100Err=FP+FNTP+FN+FP×100Fnr=FNTP+FN×100(1)

Table 2 summarizes the performance of the proposed method on the test datasets. The Sen, Pre, Err were 99.57%, 99.59% and 0.83% on AR_DS1, 99.88%, 99.63% and 0.48% on SV, 99.91%, 99.43% and 0.66% on ST-T, 99.94%, 99.47% and 0.59% on STC, 94.78%, 94.30% and 10.36% on NST, 98.33%, 99.93% and 1.74% on HIE, 96.10%, 94.35% and 9.13% on CPSC 2019. The proposed method achieved good results on the cross-dataset test. The Fnr for N type of beats was 0.34% on AR_DS1, 5.32% on NST, and less than 0.1% on the other datasets. For S type of beats, Fnr was approximately 0.1% on both AR_DS1 and SV, 2.4% on ST-T and 5.56% on NST. All S type of beats were successfully detected on STC. The Fnr for V type of beats was 1.56% on AR_DS1, 0.67% on SV, 2.33% on ST-T, 5.61% on STC, and 4.34% on NST. The datasets of CPSC2019 and HIE did not provide the annotations for beat types, and no F or Q type beats were found in STC and NST. The range of average distance between predicted and annotated heartbeat was from 21 milliseconds to 35 milliseconds, with a standard deviation of less than 25 milliseconds.

Table 2
www.frontiersin.org

Table 2. The performance of proposed method.

In order to compared with existing methods, the proposed method was retrained on the AR_DS1 and tested on the CPSC2019 dataset (with the tolerance 0.075 s), and retrained on the CPSC2019 and tested on NST datasets. The results were given on Table 3 and Table 4 respectively. On the CPSC 2019, compared with the state-of-the-art He’s method (He et al., 2021) the proposed method achieved a similar Sen (95.15% vs. 95.13%) and better Pre (91.75% vs. 82.03%) and Err (12.35% vs. 21.28%). On the NST, the performance of proposed detector was comparable to the best Cai’s method (Cai and Hu, 2020). The Sen of the proposed method was slightly better (95.59% vs. 95.55%), while the Pre and Err were slightly lower (91.03% vs. 92.93%, 12.64% vs. 10.92%, respectively).

Table 3
www.frontiersin.org

Table 3. Comparison of the QRS complex detection performance on the CPSC 2019 (with of tolerance of 0.075s).

Table 4
www.frontiersin.org

Table 4. Comparison of the QRS complex detection performance on the NST.

The ablation experiments were performed to evaluate the effectiveness of the improvements. A larger convolutional kernel size of 29 samples (MWLK) and a smaller convolutional kernel size of 9 samples (MWSK) were used to respectively replace the kernel size of 19 samples in the convolutional layers. And the model with single input channel (MWSC) was used to performed the detection on the first lead ECG-signal, similar to the work (Cai and Hu, 2020). In the training stage, the proposed model was trained with the border points of QRS complex (TWBP) and trained without simulated data (TWoSD) respectively. Additionally, it was reported that Fourier decomposition method based discrete Fourier transform (FDM-DFT) and discrete cosine transform (FDM-DCT) can effectively remove the baseline wander and power-line interference (Singhal et al., 2020), these two methods were adopted as alternatives for the butterworth filter. The Nemenyi test was applied to determine whether there were statistically significant differences in performance. The results were summarized in Tables 57.

Table 5
www.frontiersin.org

Table 5. Result of Sen in ablation experiments.

Table 6
www.frontiersin.org

Table 6. Result of Pre in ablation experiments.

Table 7
www.frontiersin.org

Table 7. Result of Err in ablation experiments.

5 Discussion

In this work, a simple and effective method was designed to detect the QRS complex on the ECG signal. A large-sized convolutional kernel was used in the convolutional layers, and the model was designed to have dual input channels. Furthermore, a novel training strategy was developed. The points on the border of the QRS complex were removed, and the artificially generated ECG segments with a high heart rate were included in the data augmentation. The proposed method achieved good results on the cross-dataset testing. The He’s method (He et al., 2021) and Cai’s method (Cai and Hu, 2020) are two state-of-the-art methods and have excellent performance. The He’s method adopted the U-Net combined with the Bidirectional LSTM modules. The Cai’s approach involves two models, one based on CNN and another based on CRNN. The CNN model composed of three parallel CNN blocks, a squeeze-and-excitation network (SENet) and three fully connected layers. The structure of the CRNN model was similar to the CNN model, with the addition of two LSTM layers before the SENet. Due to the use of sophisticated modules like LSTM and fully connected layers, these two methods have a large number of parameters (4,466,339 parameters in He’s method, 218,969 parameters and 2,708,417 parameters in Cai’s method). Compared with these state-of-the-art models, the proposed detector has fewer parameters and comparable results.

The QRS complex represents a short-duration electrical activity of the heartbeat and has clear differences from other waveforms. Due to the good ability of capturing the local feature, we thought that the CNN with a sufficiently sized receptive field can effectively learn the QRS complex features and identify the QRS complex, without the need for application of other sophisticated module. Consequently, the size of convolutional kernel becomes an essential issue in the for the FCN based model. The traditional CNN based algorithms with small-sized kernels can extract features that represent the detailed variations of QRS complex, which is advantageous to detect the QRS waves contaminated by noise. However, it increases the likelihood of misclassifying noise or other non-QRS waves with similar patterns as QRS complex, leading to more false positives. With the increased of kernel size, the model tend to overlook subtle variations in the QRS complex and instead focuses on a broader range of ECG waveforms. The model exhibits a tendency to enhance ECG waves that closely resemble the QRS complex, while effectively suppressing ECG waves with different shapes, such as QRS complexes contaminated by noise. As a result, the Pre increased and Sen decreased. In the experiments, compared to the MWSK, the MWLK has a lower Sen and a greater Pre, especially in the two dataset with relatively more number of noisy segments (CPSC2019 and NST). The Sen of MWLK and MWSK were 96.66% and 97.49% respectively on NST, 96.89% and 97.89% respectively on CPSC 2019, And the Pre of MWLK and MWSK were 94.63% and 91.05% in NST, 93.3% and 89.87% respectively in CPSC 2019. To achieve a balance between the Sen and Pre, an intermediate size of 19 samples was selected in the study, which has significantly lower Err on the ST-T and STC dataset, and no significant difference on other datasets.

Most of existing methods were designed to detect the QRS complex on the ECG signal with a single lead. Although some methods used dual input channels, the information of the second channel was extracted from the first channel. For instance, in the work (He et al., 2021), the ECG signal from the first channel was inverted and used as the second channel. In the work (Yuen et al., 2019), the gradient of the ECG signal from the first channel was used as the second channel. For the ECG signal with multiple input channels, we thought that when the noise was present on one channel of the multi-channel ECG signal, the DL-based detector can automatically utilize the information from other channels. This is advantageous in reducing the false positives. For the ECG signal with single-channel, as the signal of second channel was generated through signal replication, there would not be a significant increased in the Err, although the Sen and Pre may undergo some changes. The experimental results indicate that our method is helpful in improving performance. For the detection on the signals with two noisy dataset, although the Sen of MWSC was slightly higher (96.63% vs. 94.78% on NST, 98.32% vs. 96.10% on CPSC 2019), but the Pre (83.71% vs. 94.30% on NST, 89.56% vs.94.35% on CPSC 2019) and Err (18.67% vs. 10.36% on NST, 11.79% vs. 9.13% on CPSC 2019) were fundamental lower than proposed method.

In the training, the target of the DL model was generated by marking a binary label to the points on the ECG signal, and the label value was determined to the interval to the closest annotated QRS complexes. So, the different labels would be assigned to adjacent points with a similar presence on the border of QRS complex. It would confuse the model and consequently increase the number of false positives. Following the concept of CenterNet (Zhou et al., 2019), the QRS complex can be represented by a single point at the center of a bounding box, Hence, the points around the endpoints of the bounding box could be ignored in the training. It is reported that the duration of QRS comples is less than 150 milliseconds (Taylor, 2008), and the predicted QRS complex was considered as false positive if its distance to the closest annotated QRS complex is longer than 150 milliseconds. Consequently, the points whose interval to the closest annotated QRS complex from 75 milliseconds to 150 milliseconds can be removed in the training. Experimental results shows that TWBP had a lower Pre and higher Err compared to the proposed on all datasets. For the detection on the signals with two noisy dataset, although the Sen of MWSC was slightly higher (97.96% vs. 94.78% on NST, 97.47% vs. 96.10% on CPSC 2019), but the Pre (89.60% vs. 94.30% on NST, 91.71% vs.94.35% on CPSC 2019) and Err (12.04% vs. 10.36% on NST, 10.42% vs. 9.13% on CPSC 2019) were fundamental lower than proposed method.

During high-intensity exercise, the heart rate can reach a high level. However, most datasets contain only a small number of high heart rate segments. This may have a detrimental impact on the performance of the DNN model as it may miss many QRS complexes in the application. When the simulated segments were excluded from the training (TWoSD), the Sen reduced from 98.33% to 86.98%, and Err increased from 1.76% to 13.08% on the HIE. Experimental results show that the application of simulation data with a high heart rate is beneficial to train the model.

Noise attenuation plays a crucial role as a preprocessing step in QRS complex detection. While the noise suppression capability of the butterworth filter may not be as robust as Fourier-based methods, it can be effectively compensated for by utilizing a DNN model. This is attributed to the powerful representation capabilities of the DNN model, which enables it to overcome the limitations of the butterworth filter. The experimental results demonstrate that the proposed method maintains a comparable level with FDM-DCT and FDM-FFT on most datasets, without significant reduction.

The N, S and V are three primary types of beats, and the Fnr of S and V type of beats is lower than N type of beats. It can be attributed to several factors. Firstly, the rhythm of S and V type of beats deviates from the normal sinus rhythm and tends to be more unstable. Secondly, the morphology of S and V type of beats is more variable compared to N beats. Lastly, the volume of training data associated with S and V beats is substantially less than that of N beats. Therefore, it is more challenging to accurately detect S and V type of beats, resulting in a higher Fnr.

In the experiments, several hyperparameters and strategies were employed to prevent the overfitting. Firstly, the model was trained for a limited number of epochs, specifically 5 epochs, with early stopping based on validation error. This decision was made to strike a balance between allowing the model to learn meaningful patterns in the data and avoiding excessive training. Furthermore, a batch size of 32 was utilized during the training process. This choice of batch size ensures a sufficient number of samples are processed in each iteration, while simultaneously introducing more noise into the optimization process to prevent overfitting and avoid memorizing the training data. Additionally, a weight decay of 1e-8 was applied to the model’s parameters. This regularization technique encouraging the model to have smaller weights, resuling in preventing the model from becoming too complex.

The main limitation of proposed detector is the fixed threshold used for the determination of the QRS complex and without the search-back strategy. On the noisy segments, the response of the DNN model may be relative low. So many QRS complexes would be missed. It is generally thought the err-predicted is better than the miss detected (Cai et al., 2020). Therefore, an adapatively adjusted threshold with a search-back strategy can be applied, if no QRS complex was detected during a specific interval. Besides, the positional differences between predicted and annotated heartbeats were relatively large. In subsequent analyses, the impact of positional offsets can be mitigated by using a wider analysis window for heartbeat analysis, and by calculating the heart rate based on multiple heartbeat intervals.

6 Conclusion

In the paper, a DNN based algorithm with a novel training strategy was developed to detect the QRS complex on the ECG signal. After preprocessing the ECG signal, the DNN model was used to predict the probability of each point belonging to the QRS complex. Then local maximal points on the heat maps with the probability exceeding than the specified threshold were treated as the candidates. Finally, the NMS based post-preprocessing was performed to remove the false positives. The proposed method had a small number of parameters and achieved a good result on several public ECG datasets, indicating that it may be applicable to wearable ECG devices. The limitation of the work is the utilization of a fixed response threshold without the search back strategy. In the future work, we will try to address this limitation and increase the prediction heads of classification and delineation for the further analysis of heartbeats.

Data availability statement

Publicly available datasets were analyzed in this study. This data can be found here: https://physionet.org/about/database/#ecg.

Ethics statement

Ethical approval was not required for the study involving humans in accordance with the local legislation and institutional requirements. Written informed consent to participate in this study was not required from the participants or the participants’ legal guardians/next of kin in accordance with the national legislation and the institutional requirements.

Author contributions

WZ: Methodology, Writing–original draft, Writing–review and editing, Project administration, Software. ZL: Methodology, Writing–review and editing. JH: Methodology, Writing–review and editing. YM: Methodology, Writing–review and editing.

Funding

The author(s) declare that no financial support was received for the research, authorship, and/or publication of this article.

Conflict of interest

Authors WZ, ZL, JH, and YM were employed by the company Guangzhou Shiyuan Electronics Co., Ltd.

Publisher’s note

All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article, or claim that may be made by its manufacturer, is not guaranteed or endorsed by the publisher.

References

AAMI (2012). AAMI EC57:2012 testing and reporting performance results of cardiac rhythm and ST segment measurement algorithms (AAMI).

Google Scholar

Cai W., Hu D. (2020). Qrs complex detection using novel deep learning neural networks. IEEE Access 8, 97082–97089. doi:10.1109/ACCESS.2020.2997473

CrossRef Full Text | Google Scholar

Cai Z., Liu C., Hongxiang G., Wang X., Zhao L., Shen Q., et al. (2020). An open-access long-term wearable ecg database for premature ventricular contractions and supraventricular premature beat detection. doi:10.1166/jmihi.2020.32892663

CrossRef Full Text | Google Scholar

de Chazal P., O’Dwyer M., Reilly R. B. (2004). Automatic classification of heartbeats using ecg morphology and heartbeat interval features. IEEE Trans. Biomed. Eng. 51, 1196–1206. doi:10.1109/TBME.2004.827359

PubMed Abstract | CrossRef Full Text | Google Scholar

De Giovanni E., Teijeiro T., Millet G. P., Atienza D. (2023). Adaptive r-peak detection on wearable ecg sensors for high-intensity exercise. IEEE Trans. Biomed. Eng. 70, 941–953. doi:10.1109/TBME.2022.3205304

PubMed Abstract | CrossRef Full Text | Google Scholar

Gb M., We M., Rg M. (1984). A noise stress test for arrhythmia detectors. doi:10.1109/CIC.2002.1166717

CrossRef Full Text | Google Scholar

Goldberger A. L., Amaral L. A. N., Glass L., Hausdorff J. M., Ivanov P. C., Mark R. G., et al. (2000). PhysioBank, PhysioToolkit, and PhysioNet: components of a new research resource for complex physiologic signals. Circulation 101, e215–e220. doi:10.1161/01.cir.101.23.e215

PubMed Abstract | CrossRef Full Text | Google Scholar

Greenwald S. D. (1990). Improved detection and classification of arrhythmias in noise-corrupted electrocardiograms using contextual information.

Google Scholar

Hamilton P. (2002). Open source ecg analysis. Comput. Cardiol., 101–104. doi:10.1109/CIC.2002.1166717

CrossRef Full Text | Google Scholar

Hamilton P. S., Tompkins W. J. (1986). “Quantitative investigation of qrs detection rules using the mit/bih arrhythmia database,” in IEEE transactions on biomedical engineering BME-33, 1157–1165. doi:10.1109/TBME.1986.325695

PubMed Abstract | CrossRef Full Text | Google Scholar

He R., Liu Y., Wang K., Zhao N., Yuan Y., Li Q., et al. (2021). Automatic detection of qrs complexes using dual channels based on u-net and bidirectional long short-term memory. IEEE J. Biomed. Health Inf. 25, 1052–1061. doi:10.1109/JBHI.2020.3018563

CrossRef Full Text | Google Scholar

Hongxiang G., Liu C., Wang X., Zhao L., Shen Q., Ng E., et al. (2019). An open-access ecg database for algorithm evaluation of qrs detection and heart rate estimation. J. Med. Imaging Health Inf. 9, 1853–1858. doi:10.1166/jmihi.2019.2800

CrossRef Full Text | Google Scholar

Khamis H., Weiss R., Xie Y., Chang C. W., Lovell N. H., Redmond S. J. (2016). Qrs detection algorithm for telehealth electrocardiogram recordings. IEEE Trans. Biomed. Eng. 63, 1377–1388. doi:10.1109/TBME.2016.2549060

PubMed Abstract | CrossRef Full Text | Google Scholar

Kohler B. U., Hennig C., Orglmeister R. (2002). The principles of software qrs detection. IEEE Eng. Med. Biol. Mag. 21, 42–57. doi:10.1109/51.993193

PubMed Abstract | CrossRef Full Text | Google Scholar

Lee J. S., Lee S. J., Choi M., Seo M., Kim S. W. (2019). QRS detection method based on fully convolutional networks for capacitive electrocardiogram. Expert Syst. Appl. 134, 66–78. doi:10.1016/j.eswa.2019.05.033

CrossRef Full Text | Google Scholar

Lin T., Dollar P., Girshick R., He K., Hariharan B., Belongie S. (2017). “Feature pyramid networks for object detection,” in 2017 IEEE conference on computer vision and pattern recognition (CVPR) (Los Alamitos, CA, USA: IEEE Computer Society), 936–944. doi:10.1109/CVPR.2017.106

CrossRef Full Text | Google Scholar

Liu F., Liu C., Jiang X., Zhang Z., Zhang Y., Li J., et al. (2018a). Performance analysis of ten common qrs detectors on different ecg application cases. J. Healthc. Eng. 2018, 9050812–9050818. doi:10.1155/2018/9050812

PubMed Abstract | CrossRef Full Text | Google Scholar

Liu Y., Yu J., Han Y. (2018b). Understanding the effective receptive field in semantic image segmentation. Multimedia Tools Appl. 77, 22159–22171. doi:10.1007/s11042-018-5704-3

CrossRef Full Text | Google Scholar

Moody G., Mark R. (2001). The impact of the mit-bih arrhythmia database. doi:10.1109/51.932724

CrossRef Full Text | Google Scholar

Orlandic L., Giovanni Ed, Arza A., Yazdani S., Vesin J. M., Atienza D. (2019). “Reward: design, optimization, and evaluation of a real-time relative-energy wearable r-peak detection algorithm,” in 2019 41st annual international conference of the IEEE engineering in medicine and biology society (EMBC), 3341–3347. doi:10.1109/EMBC.2019.8857226

CrossRef Full Text | Google Scholar

P A. (1983). “S-T segment characterization for long-term automated ECG analysis,” in Master’s thesis, MIT dept. Of electrical engineering and computer science.

Google Scholar

Pan J., Tompkins W. J. (1985). “A real-time qrs detection algorithm,” in IEEE transactions on biomedical engineering BME-32, 230–236. doi:10.1109/TBME.1985.325532

CrossRef Full Text | Google Scholar

Paszke A., Gross S., Massa F., Lerer A., Bradbury J., Chanan G., et al. (2019). Pytorch: an imperative style, high-performance deep learning library.

Google Scholar

Rodrigues T., Samoutphonh S., Silva H., Fred A. (2021). “A low-complexity r-peak detection algorithm with adaptive thresholding for wearable devices,” in 2020 25th international conference on pattern recognition (ICPR), 1–8. doi:10.1109/ICPR48806.2021.9413245

CrossRef Full Text | Google Scholar

Šarlija M., Jurišić F., Popović S. (2017). “A convolutional neural network based approach to qrs detection,” in Proceedings of the 10th international symposium on image and signal processing and analysis, 121–125. doi:10.1109/ISPA.2017.8073581

CrossRef Full Text | Google Scholar

Singhal A., Singh P., Fatimah B., Pachori R. B. (2020). An efficient removal of power-line interference and baseline wander from ecg signals by employing fourier decomposition technique. Biomed. Signal Process. Control 57, 101741. doi:10.1016/j.bspc.2019.101741

CrossRef Full Text | Google Scholar

Taddei A., Distante G., Emdin M., Pisani P., Moody G. B., Zeelenberg C., et al. (1992). The European ST-T database: standard for evaluating systems for the analysis of ST-T changes in ambulatory electrocardiography. Eur. Heart J. 13, 1164–1172. doi:10.1093/oxfordjournals.eurheartj.a060332

PubMed Abstract | CrossRef Full Text | Google Scholar

Taylor G. J. (2008). Practice ECGs: interpretation and review. Wiley-Blackwell.

Google Scholar

Wang X., Zou Q. (2019). “Qrs detection in ecg signal based on residual network,” in 2019 IEEE 11th international conference on communication software and networks (ICCSN), 73–77. doi:10.1109/ICCSN.2019.8905308

CrossRef Full Text | Google Scholar

Xiang Y., Lin Z., Meng J. (2018). Automatic qrs complex detection using two-level convolutional neural network. Biomed. Eng. OnLine 17, 13. doi:10.1186/s12938-018-0441-4

PubMed Abstract | CrossRef Full Text | Google Scholar

Yuen B., Dong X., Lu T. (2019). Inter-patient cnn-lstm for qrs complex detection in noisy ecg signals. IEEE Access 7, 169359–169370. doi:10.1109/ACCESS.2019.2955738

CrossRef Full Text | Google Scholar

Zahid M. U., Kiranyaz S., Ince T., Devecioglu O. C., Chowdhury M. E. H., Khandakar A., et al. (2022). Robust r-peak detection in low-quality holter ecgs using 1d convolutional neural network. IEEE Trans. Biomed. Eng. 69, 119–128. doi:10.1109/TBME.2021.3088218

PubMed Abstract | CrossRef Full Text | Google Scholar

Zhou X., Wang D., Krähenbühl P. (2019). Objects as points. CoRR abs/1904.07850.

Google Scholar

Keywords: electrocardiogram (ECG), QRS complex, Qrs complex detection, deep learning, QRS complex boundary

Citation: Zhao W, Li Z, Hu J and Ma Y (2024) A simple and effective deep neural network based QRS complex detection method on ECG signal. Front. Physiol. 15:1384356. doi: 10.3389/fphys.2024.1384356

Received: 09 February 2024; Accepted: 14 June 2024;
Published: 15 July 2024.

Edited by:

Remi Dubois, IHU LIRYC: Cardiac Electrophysiology and Heart Modeling Institute, France

Reviewed by:

Jan Kubicek, VSB-Technical University of Ostrava, Czechia
Pushpendra Singh, Jawaharlal Nehru University, India

Copyright © 2024 Zhao, Li, Hu and Ma. This is an open-access article distributed under the terms of the Creative Commons Attribution License (CC BY). The use, distribution or reproduction in other forums is permitted, provided the original author(s) and the copyright owner(s) are credited and that the original publication in this journal is cited, in accordance with accepted academic practice. No use, distribution or reproduction is permitted which does not comply with these terms.

*Correspondence: Wei Zhao, zhaowei@cvte.com

Disclaimer: All claims expressed in this article are solely those of the authors and do not necessarily represent those of their affiliated organizations, or those of the publisher, the editors and the reviewers. Any product that may be evaluated in this article or claim that may be made by its manufacturer is not guaranteed or endorsed by the publisher.