Skip to main content

EEG seizure detection and prediction algorithms: a survey

Abstract

Epilepsy patients experience challenges in daily life due to precautions they have to take in order to cope with this condition. When a seizure occurs, it might cause injuries or endanger the life of the patients or others, especially when they are using heavy machinery, e.g., deriving cars. Studies of epilepsy often rely on electroencephalogram (EEG) signals in order to analyze the behavior of the brain during seizures. Locating the seizure period in EEG recordings manually is difficult and time consuming; one often needs to skim through tens or even hundreds of hours of EEG recordings. Therefore, automatic detection of such an activity is of great importance. Another potential usage of EEG signal analysis is in the prediction of epileptic activities before they occur, as this will enable the patients (and caregivers) to take appropriate precautions. In this paper, we first present an overview of seizure detection and prediction problem and provide insights on the challenges in this area. Second, we cover some of the state-of-the-art seizure detection and prediction algorithms and provide comparison between these algorithms. Finally, we conclude with future research directions and open problems in this topic.

1 Review

1.1 Introduction

Epilepsy, which is classified as a neurological disorder that affects the brain, impacts about 2% of the world population leading to a reduction in their productivity and imposing restrictions on their daily life[1]. Diagnosis of epilepsy is done by analyzing electroencephalogram (EEG) signals, as well as patient behavior. EEG signals have two types: scalp EEG and intracranial EEG (iEEG). Scalp EEG signals are usually collected with electrodes placed on the scalp using some sort of conductive gel after treating the scalp area with light abrasion in order to decrease the impedance resulting from dead skin cells. Commonly, 19 recording electrodes in addition to a ground and system reference are placed on the scalp area according to specifications by the International 10–20 system. However, fewer electrodes are used when the EEG signals are recorded for neonates[2]. Each of these electrodes collects an EEG signal, which is centrally recorded for post-processing. On the other hand, in iEEG, electrodes are placed directly on the exposed surface of the brain during a surgery to record electrical activity from the cerebral cortex. For the seizure detection task in the case of epilepsy patients, it is required to analyze these EEG signals towards a decision of the existence, or absence, of an epileptic seizure. If a seizure exists, further analysis could be made for more understanding of seizure behavior. Most of the research work in the field of seizure detection depends on scalp EEG signals, which are acquired with non-invasive techniques. So, we will adopt the term EEG to refer to scalp EEG throughout the paper.

The seizure detection process can be made on a single- or multi-channel basis[3, 4]. Single-channel seizure detection requires selecting the channel containing the strongest EEG signal collected from the closest point to the seizure spot. This selection process depends mainly on activity measures evaluated for the different channels instantaneously such as the local variance. A better treatment to the seizure detection issue depends on incorporating the information from all EEG signals available into the seizure detection process through data fusion, or multi-channel processing techniques[5].

Several studies have been conducted on EEG seizure detection[3, 4]. To perform seizure detection on time-domain waveforms, there is a need to create models for the EEG signals, from which features are extracted, because treating the signal as discrete-time sequence is not a robust approach for extracting characterizing features. Some algorithms create models for normal and abnormal EEG signals of the patients and use these models in the training process. New signals are tested against these models leading to the decision of seizure or non-seizure activities. Most of the time-domain seizure detection algorithms are patient specific; that is, they are applied to the patient for which training data are extracted. This is intuitively meaningful as each patient has a different nature for his/her EEG signals.

Efforts have also been made to develop seizure prediction algorithms[6, 7]. Note that with seizure prediction, it is possible to alert ambulatory patients or caregivers before seizure occurs and causes injury. In addition, seizure prediction could initiate time-sensitive clinical procedures necessary for characterizing epileptic syndromes. It could, also, help in initiating delivery of therapy early enough to attenuate seizure attack and reduce its duration or may even terminate it completely. The endeavor towards fast and simple seizure prediction algorithms has led to the development of a variety of algorithms which will be covered in this paper.

Signal processing has shown a breakthrough with the evolution of several discrete transforms and signal decomposition techniques, because all of these transforms and decompositions have their unique nature. For example, the discrete Fourier transform (DFT) and discrete wavelet transform (DWT) have found popularity in seizure detection and prediction applications. Similarly, the singular value decomposition (SVD) and empirical mode decomposition (EMD) have also found a role in these applications. Even the principal component analysis (PCA) and the independent component analysis (ICA) have found a pre-processing noise removal role in these applications.

Several attempts have been presented in the literature to classify EEG seizure detection and prediction methods. For example, classification into linear and non-linear methods considers variance-based, correlation-based, and simple power spectrum-based methods as linear methods and all other methods as non-linear methods[8–10]. We did not adopt this classification as most of the reviewed methods in this paper are non-linear techniques. Another classification for seizure detection and prediction methods depends on the type of EEG signals used: whether scalp EEG or iEEG. We mentioned in this paper the type of database used for testing each method and the type of the signals in the database.

Tzallas et al. presented a classification of EEG seizure detection methods into pattern recognition methods, morphological analysis methods, parametric methods, decomposition methods, clustering methods, and data mining methods[11]. In this paper, we review some of the recently developed seizure detection and prediction algorithms along with a comparison study between them adopting another basis for classification of seizure detection and prediction methods depending on the transform domain of operation. It seems that seizure detection and prediction are two different trends, but we look at them from a signal processing perspective with different transform domains. We investigate in our description and classification in this paper the most important seizure detection and prediction algorithms operating in each transform domain. Figure 1 shows a classification of the seizure detection and prediction methods based on the processing domain.

Figure 1
figure 1

Classification of seizure detection and prediction methods.

Therefore, we organize the paper as follows. We first begin by the most common methods for seizure detection and prediction: time-domain methods, which are addressed in Section 1.2. Section 1.3 is devoted to frequency-domain seizure detection methods. Wavelet-domain seizure detection and prediction methods are covered in Section 1.4. Sections 1.5 and 1.6 are devoted for seizure detection methods that are based on the EMD and the SVD, respectively. Section 1.7 presents the role of ICA and PCA in seizure detection. A comparison study illustrating seizure detection and prediction methods is given in Section 2.

1.2 Time-domain methods

In general, local activities of EEG waveforms vary from patient to patient; therefore, seizure detection and prediction algorithms are preferred to be patient specific. Figure 2 shows an example of an EEG signal including a seizure period. It is clear that there is a difference between seizure and non-seizure intervals. As we are able to differentiate between these intervals visually, time-domain detection and prediction methods attempt to differentiate between them automatically, and evaluate the performance using different metrics such as the sensitivity, specificity, accuracy, and false-positive value. These metrics are defined as follows[12]:

Figure 2
figure 2

An EEG signal containing a seizure.

Sensitivity= T P T P + F N ×100
(1)
Specificity= T N T N + F P ×100
(2)
Accuracy= T P + T N T N + F P + T P + F N ×100
(3)
Falsepositivevalue= T P T P + F P ×100,
(4)

where true positive (TP) is the number of seizure epochs determined by both algorithm and experienced physicians, false positive (FN) is the number of seizure epochs which are missed by the algorithm but have been determined by experienced physicians, true negative (TN) is the number of non-seizure epochs recognized by both algorithm and experienced physicians, and false positive (FP) is the number of non-seizure epochs recognized as seizure by the algorithm.

1.2.1 Seizure detection methods

To detect EEG seizures in time domain, there is a need to analyze discrete time sequences of EEG epochs. This analysis can be accomplished through histograms of the epochs. Runarsson and Sigurdsson presented a simple time-domain seizure detection method that is based on tracing consecutive peaks and minima in the signal segment at hand and estimating the histograms for two variables: the amplitude difference and time separation between peak values as well as minima[13]. The features used for classification of an epoch as a seizure or non-seizure are the estimated values of the histogram bins. The authors used a support vector machine (SVM) classifier for this task and achieved an average sensitivity of about 90% on self-recorded data.

Another approach to deal with the EEG seizure detection method in time domain is to compute the signal energy during seizure and non-seizure periods. A better treatment to the energy estimation approach is to estimate the energies of the signal sub-bands not the signal as a whole in order to build a more discriminative feature vector. Yoo et al. adopted this approach and presented an eight-channel EEG acquisition system-on-chip (SoC) that can detect and record patient-specific epileptic seizures[14]. They used a bank of seven band-pass filters covering the frequency range from 2 to 26 Hz on eight channels of the processed EEG signals. Eight highly dynamic analog channels, classification processor, and a 64-KB SRAM have been integrated in the SoC. With this approach, a long-term seizure monitoring and storage device was built. The authors used an SVM as a classifier with a gain and bandwidth (GBW) controller to perform real-time gain and bandwidth adaptation to analog front end (AFE) in order to keep a high accuracy. This classifier is well suited for the hardware implementation. The SoC was tested on CHB-MIT scalp EEG database[15], and it was verified in the presence of a rapid eye blink giving an accuracy of 84.4% with 2.03 Î¼J/classification energy.

Another approach to deal with time-domain seizure detection is to exploit some discriminating statistics between seizure and non-seizure epochs. Dalton et al. developed a body senor network (BSN) that can monitor and detect epileptic seizures based on statistics extracted from time-domain signals[16]. These statistics include the mean, variance, zero-crossing rate, entropy, and auto-correlation with template signals. For auto-correlation estimation, they adopted a dynamic time warping (DTW) approach for best alignment between the signal segment to be tested and the template signal. The authors presented a network to be embedded in wearable kinematic sensors and an N810 Internet tablet. Data were recorded from the subjects using kinematic sensors such as triaccelerometer, gyroscope, and magnetic sensor for physical activity monitoring. This algorithm was, then, commercially distributed and a BSN was developed on a Mercury platform. The sensitivity of the proposed algorithm for a dataset of 21 seizures was found to be 91% with a specificity of 84% and battery lifetime of 10.5 h.

1.2.2 Seizure prediction methods

The research work on the issue of time-domain seizure prediction is richer than time-domain seizure detection due to the importance of the seizure prediction problem. We can think of the seizure prediction problem as a detection problem of the pre-ictal state on seizure records. This requires a considerable long inter-ictal state for good prediction results. Similar statistics to those used in seizure detection like the zero-crossing rate can be used for seizure prediction. Zandi et al. used the zero-crossing rate of EEG signal segments to develop a patient-specific seizure prediction method[17, 18]. A moving window analysis is used in this method. The histograms of the different window intervals are estimated, and selected histogram bins are used for classification into pre-ictal and inter-ictal states based on comparison with reference histograms. A variational Bayesian Gaussian mixture model has been used for classification. In this method, a combined index for the decisions taken on selected bins is computed and compared with a pre-defined patient-specific threshold to raise an alarm for coming seizures as shown in Figure 3. This method has been tested on 561 h of scalp EEG containing 86 seizures for 20 patients. It achieved a sensitivity of 88.34%, a false prediction rate of 0.155 h-1, and an average prediction time of 22.5 min.

Figure 3
figure 3

Zandi et al. seizure prediction method.

Aarabi and He[19] developed a time-domain rule-based patient-specific seizure prediction method which consists of three stages: pre-processing, feature extraction, and rule-based decision making. In the pre-processing stage, the iEEG data is filtered using a 0.5- to 100-Hz band-pass filter in addition to a 50-Hz notch filter. Then, the filtered signal is segmented into non-overlapping 10-s segments. Five univariate features (correlation entropy, correlation dimension, Lempel-Ziv complexity, noise level, and largest Lyapunov exponent) and one bivariate feature (non-linear independence) were extracted from each segment in the second stage.

Based on the theory of chaos, the correlation dimension (denoted by ν) represents a dimensionality measure of the space having a set of random points; in our case, EEG signals. For an m-dimensional space containing a set of N points, we have:

x → i = x 1 i , x 2 i , ....... , x m i , i = 1 , 2 , .... , N
(5)

The correlation integral C(ϵ) can be estimated as[20]:

C ϵ = lim N → ∞ g N 2 ,
(6)

where g represents the total number of pairs of signals or points having a distance less than ϵ. As the number of points increases and tends to infinity and the distance tends to be shorter or close to zero, the correlation integral, in turn, for small values of ϵ becomes:

C ϵ ≈ ϵ v
(7)

If a large number of evenly distributed points exists, a log-log graph of the correlation integral versus ϵ can be used to estimate ν. For objects with higher dimensions, several ways exist for points to be close to each other, and hence, the number of pairs which are close to each other jumps rapidly for higher dimensions[20].

Correlation entropy is a Kolmogorov entropy variant, which is similar to the mutual information between two sequences of data. Large mutual information between an available data segment and stored segments with specific patterns is an indication that the segment at hand belongs to a dataset with similar characteristics to the stored pattern[21]. The Lempel-Ziv complexity is a measure of randomness of data sequences[22]. It counts the number of data patterns with certain characteristics in data segments. For example, if we find enough short patterns with specific mean, variance, or higher-order statistics in an EEG segment, we can classify this segment as a seizure segment.

The Lyapunov exponent of a dynamical system determines the separation rate of very closely related trajectories. Hence, two signal vectors in the phase space with an initial separation of δ Z0 will eventually diverge at a rate given by:

δ Z t ≈ e λ t δ Z 0 ,
(8)

where λ is the Lyapunov exponent. This can be achieved if the divergence can be dealt with within the linearized approximation.

The separation rate differs based on the initial separation vector orientation. The maximal Lyapunov exponent can be estimated as[23]:

λ= lim t → ∞ lim δ Z 0 → 0 1 t ln δ Z t δ Z 0
(9)

The limit δ Z0 → 0 ensures the validity of the linear approximation at any time.

Considering a given segment and feature, if N channels exhibit behaviors like those expected in the feature or segment spatiotemporal profile describing the pre-ictal state of the patient, and if N was greater than a threshold Nch, then this segment is temporarily categorized as a seizure precursor, and hence a flag, labeled as I, is raised for the segment as shown in Figure 4. A value is given to this flag by an averaging process for the channels’ absolute normalized feature values. The channels selected are those that show similar behavior to the one expected in the spatiotemporal profile of the feature characterizing the pre-ictal state of the patient. The values and location of all flag Is are hence stored and given as input into the feature integrator, which integrates decisions for every segment to accurately locate the seizure precursors. For any signal segment, if M flag Is with values that are higher than a certain significance threshold Tc1 are raised and if M is larger than a certain threshold N F , then another flag which is labeled as II is raised. This flag is determined as the average of the values of the flag Is. Flag IIs ensure a higher likelihood of accurate seizure prediction. Flag IIs are used as input to the feature integrator II to obtain a higher-level decision. This feature integrator integrates flag Is and flag IIs as shown in Figure 4. If both flag I and flag II are raised, then a flag III representing a definitive seizure precursor is also raised.

Figure 4
figure 4

Method of Aarabi and He for seizure prediction.

This method has been evaluated using iEEG data from two patients (frontal, temporal lobe origin) from Freiburg Seizure Prediction EEG (FSPEEG) database with a 256-Hz sampling rate and a total of 58 h, and 10 seizures with 50-min pre-ictal at least[24]. The results demonstrated average sensitivities of 90% and 96.5% for patient one and patient two, respectively. The average false prediction rates were 0.06/h and 0.055/h for both patients for prediction horizons of 30 and 60 min.

Schelter et al. presented a new method to minimize the false alarms adopting circadian concepts[25]. A circadian rhythm is defined as any biological operation that reveals an endogenous, entrainable oscillation for 24 h. The authors used the output of the mean phase coherent algorithm, which measures the interaction between pairs of EEG signals, as a seizure predictor, which causes an alarm to be raised if it exceeds a certain threshold. It was assumed that the seizures occur while the patient is sleeping. The false alarms display a circadian dependency with most of the seizure prediction algorithms. The seizure predectability is increased during night due to the large number of seizures. Accordingly, threshold adaptation can be used in day and night to enhance predictability. The authors evaluated this method utilizing iEEG data from eight patients and a total of 1400 h, which include 172 seizures and reported a good prediction performance for 40% of the patients.

Wang et al. proposed an adaptive learning system that interactively learns from the patient and improves its seizure predictability over time[26]. It is based on reinforcement learning and online monitoring, in addition to adaptive control theory. In this system, a sliding window size of 10 min is used to read continuous multi-channel EEG data with a 50% overlap at each move. Then, k-nearest neighbor (KNN) method is adopted for the classification of the windowed epochs to normal or pre-seizure states based on pre-constructed baselines for both states using pre-specified baseline for normal and pre-seizure states. Finally, according to the prediction feedbacks, the two baselines are updated. This method was evaluated using iEEG data for five patients having temporal lobe epilepsy. The EEG data consisted of 26 channels with a duration range from 3 to 13 h. This method achieved an accuracy of 70% compared to 50% for the Poisson random predictor with a mean interval of λ minutes.

Researchers have proved that symptoms like sleep problems or headaches are observable from the analysis of the iEEG. These symptoms can be utilized as a major tool for seizure prediction. Bedeeuzzaman et al. have presented a seizure prediction algorithm with a statistical feature set consisting of mean absolute deviation (MAD) and inter-quartile range (IQR) to predict epileptic seizures[27]. A linear classifier has been used to find the seizure prediction time in pre-ictal iEEGs. A sensitivity of 100% with zero false-positive rate (FPR) in 12 patients and low values of FPR for the rest were achieved using Freiburg iEEG dataset. Average prediction time varied between 51 and 96 min.

The envelope of the EEG signal can be exploited to distinguish between different activities. Li et al. presented a time-domain method for seizure prediction that is based on spike rate estimation[28]. Morphological operations and averaging filters are applied to transform each signal segment to a train of spikes in a way similar to the process of envelope detection. Based on the spike rate, ictal, inter-ictal, and pre-ictal states can be identified through comparison with a certain threshold. This method was applied on 21 patients from Freiburg database, and it achieved a sensitivity of 75.8% and an average false-alarm prediction rate of 0.09/h.

Due to the inherent intra- and inter-patient seizure heterogeneities and EEG non-stationarity, it is difficult to measure the modulations of neuronal network interactions using seizure precursors. To solve this problem, Stamoulis et al. studied the pre-ictal neuro-modulations corresponding to temporal and/or frontal lobe seizures. They used information theoretic features like entropy and mutual information extracted from two frequency ranges (the range that is less than or equal to 100 Hz and the range that is greater than 100 Hz) of awake scalp EEGs[29]. They succeeded to measure pre-ictal modulations at frequencies greater than 100 Hz with high specificity.

Another approach to process EEG signals in the time domain in order to detect or predict seizure is to create models from the EEG signal segments corresponding to different activities. One of such models is the auto-regressive (AR) model, which can be thought of as a data reduction model that transforms the EEG signal segment into few coefficients. Chisci et al. studied the implantation of monitoring and control units on drug-resistant epilepsy patients with AR modeling[30]. They adopted AR modeling with a least-squares parameter estimator for EEG feature extraction in addition to a binary SVM classifier to distinguish between pre-ictal, ictal, and inter-ictal states as shown in Figure 5. This algorithm is computationally simple enabling real-time implementation. Simulation results on the Freiburg database have shown 100% sensitivity with low false-alarm rate. This is attributed to the regularization strategy of the SVM classifier with Kalman post-processing.

Figure 5
figure 5

Chisci et al. seizure prediction method.

The realization of implantable seizure prediction devices that can be used for alerting the patient and taking an action is a very challenging task. Cellular non-linear networks (CNNs), which represent a paradigm for high-speed computations, can be used for this task. Tetzlaff and Senger presented four different CNN-based approaches for epileptic seizure prediction towards an implantable seizure warning device working on any type of simple time-domain features[31]. This method can be used with any of the abovementioned features. The CNNs have been used in these approaches because they consist of locally coupled dynamical systems that can simulate the non-linear phenomena encountered in physical communication.

1.3 Frequency-domain methods

Frequency-domain techniques have been used for EEG seizure detection. Both of the Fourier transform magnitude and phase can be exploited for this purpose. Rana et al. presented a frequency-domain epileptic seizure detection approach depending on the phase-slope index (PSI) of multi-channel EEG signals[32]. If we consider signals z i [n] and z j [n], their cross spectrum is given by:

S i j f =E Z i f Z j * f ,
(10)

where Z i (f) and Z i (f) are the Fourier transforms of z i [n] and z j [n]. Hence, the complex coherence is given by:

C i j f = S i j f S i i f S j j f
(11)

An unnormalized PSI metric can be defined using complex coherence as follows:

Ψ ˜ i j =Im ∑ f ∈ F C i j * f C i j f + δ f ,
(12)

where δf is the frequency resolution and F is the frequency band of interest. We can deduce that Ψ ˜ i j measures a weighted sum of the slopes of the phase between z i [n] and z j [n] over the selected band F[32]. Normalization with the standard deviation is used to determine whether causal influence from z i [n] to z j [n] is of significant extent or not.

The PSI computes the measure of interaction between two channels. The authors used the PSI metric to distinguish between seizure and normal activities. The detection performance has been evaluated over five patients having different types of epilepsy with 47 seizures in 258 h of recorded data. The simulation results showed that this algorithm succeeded in the detection of all seizures for four out of five patients, and it achieved a lower false detection rate than two per hour. The results also showed that the channels with strong activity can be determined for each patient.

Khamis et al. used frequency-moment signatures for building a patient-specific seizure detection method[33]. Firstly, experienced electroencephalographs have marked the collected scalp EEG data with seizure events. After that, a filtering process has been performed on the windowed EEG data from electrode differences T6-P4 for the right hemisphere and T5-P3 for the left hemisphere. Power spectral densities of the signals on both hemispheres have been computed and a background removal technique has been used. Moments of these spectra have been used as features for signal classification as seizure or non-seizure. Results reported a sensitivity of 91% and false-alarm rate of 0.02 false positives per hour.

EEG signals are in general non-linear and non-stationary. So, there is a difficulty to characterize different activities of EEG signals with certain mathematical models. To tackle this problem, Acharya et al. presented a modified method for the detection of normal, pre-ictal, and ictal conditions from recorded EEG signals[34]. This method is based on four entropy features for classification: phase entropy 1 (S1), phase entropy 2 (S2), approximate entropy (ApEn), and sample entropy (SampEn). The phase entropies are estimated from the higher-order spectra of EEG signal epochs as discriminating features for ictal, pre-ictal, and inter-ictal activities. The approximate and sample entropies are logarithmic metrics that determine the closeness and matching between the incoming EEG signal pattern and the recorded templates. These features are extracted from EEG signals and fed to seven different classifiers for comparison: SVM, fuzzy Sugeno classifier (FSC), probabilistic neural network (PNN), KNN, naive Bayes classifier (NBC), decision tree (DT), and Gaussian mixture model (GMM). The obtained results with this method showed the superiority of the Fuzzy classifier, which achieved an accuracy of 98.1%.

1.4 Wavelet-domain methods

Wavelets have been widely used in the field of EEG signal analysis, especially for seizure detection and prediction. The wavelet transform in itself can be regarded as some sort of sub-band decomposition, but with down-sampling. The wavelet transform can be implemented on analog as well as digital signals. We are more interested in the DWT. The DWT can be implemented with low-pass (LP) and high-pass (HP) filtering in addition to a decimation process, and it must be invertible as shown in Figure 6a[35]. The DWT can be implemented with a single level or multi levels as shown in Figure 6b, c. For the multi-level wavelet decomposition, further decompositions up to the required level are performed on the low-pass branch only. Another implementation of wavelet analysis is the wavelet packet transform, which performs further decomposition on the low-pass and high-pass branches.

Figure 6
figure 6

Wavelet decomposition and reconstruction. The down arrow is down-sampling by 2, and the up arrow is up-sampling by 2. (a) The two-band decomposition-reconstruction filter bank. (b) Multi-level wavelet decomposition tree. (c) Multi-level wavelet reconstruction tree.

The wavelet decomposition and reconstruction filters H0, H1, G0, and G1 must satisfy the perfect reconstruction (PR) condition. These filters can be obtained by solving the following equation[35]:

Y z = 1 2 X 0 z + X 0 - z G 0 z + 1 2 X 1 z + X 1 - z G 1 z = 1 2 X z H 0 z G 0 z + H 1 z G 1 z + 1 2 X - z H 0 - z G 0 z + H 1 - z G 1 z
(13)

The main idea of using the wavelet analysis for EEG seizure detection and prediction is extracting discriminating features from appropriate sub-bands to be used for further classification.

1.4.1 Wavelet-domain seizure detection

The main challenge in wavelet-based EEG seizure detection is the determination of the appropriate wavelet decomposition level and the selection of the features from certain sub-bands for discrimination between seizure and non-seizure periods. Zhou et al. presented a wavelet-based seizure detection method that depends on lacunarity and fluctuation index as features with Bayesian linear discriminant analysis (BLDA)[12]. The lacunarity is a measure of heterogeneity used in fractal analysis. In this method, the authors first decompose the EEG epochs into five wavelet sub-bands. Three sub-bands with scales 3, 4, and 5 are chosen for further processing. For feature extraction, lacunarity and fluctuation index are computed within the frequency bands. If p(m,l) denotes the probability of points, whose amplitude is equal to m, l represents the length of EEG epochs, A is the minimum amplitude value, and B is the maximum amplitude value, then the equation below holds[12]:

∑ m = A B p m , l = 1
(14)

After calculating,

M 1 l = ∑ m = A B m p m , l
(15)
M 2 l = ∑ m = A B m 2 p m , l
(16)

The lacunarity can be obtained as:

la l = M 2 l - M 1 l 2 M 1 l 2
(17)

After feature extraction, BLDA is used to classify the seizures. The BLDA tries to minimize the risk associated with the classification decision. It can deal with high dimensionality and noisy datasets, assuming a linear relation between targets t and feature vectors x from one side and additive white Gaussian noise n from the other side in Bayesian regression. Post-processing, such as smoothing, and multi-channel decision fusion are applied to enhance the detection accuracy of the BLDA. The performance of this method was investigated on Freiburg EEG database, and it achieved a 96.25% sensitivity with 0.13/h false detection rate.

Another five-level wavelet decomposition method for seizure detection was developed by Liu et al.[36]. This method works on multi-channel iEEG signals. Three wavelet sub-bands are selected for further processing. The extracted features from these sub-bands are the relative amplitude, relative energy, coefficient of variation, and fluctuation index from the selected frequency bands. The coefficient of variation is the ratio between the standard deviation of a decomposed sub-band and the square of its mean. The fluctuation index is a measure of the intensity of a decomposed sub-band. An SVM classifier is used in this approach, and some sort of post-processing is implemented to enhance the detection performance with smoothing, multi-channel decision fusion, and collar processing. The collar processing is technique aiming to maintain the data continuity during processing. The performance of this method has been tested on 509 h for 21 epilepsy patients. Experimental results have shown that this method achieved a 94.46% sensitivity, a 95.26% specificity, and a 0.58/h false detection rate on long-term iEEG.

The five-level wavelet decomposition was also adopted by Panda et al. with an SVM classifier for seizure detection from background EEGs[37]. This classifier was tested on a healthy subject with open eyes, a healthy subject with closed eyes, and an epilepsy patient. The extracted features for signal classification are energy, standard deviation, and entropy. The simulation results revealed an accuracy of 91.2% in seizure activity detection. Khan et al. proposed a similar approach for seizure detection, but with relative energy and a normalized coefficient of variation (NCOV) as features[38]. It works on wavelet coefficients acquired in the frequency range of 0 to 32 Hz as follows:

  1. 1)

    The COV is estimated as:

    COV= σ 2 μ 2
    (18)

    where σ2 is the epoch variance and μ is the epoch mean.

  2. 2)

    The RCOV is estimated as:

    RCOV= C O V e n C O V l
    (19)

    where COV e (n) is the epoch coefficient of variation and COV(l) is the background coefficient of variation.

  3. 3)

    The NCOV is evaluated as:

    NCOV= σ 2 μ a ,
    (20)

    where μ a represents the mean of the absolute values of the wavelet coefficients. The obtained results with the NCOV are better than those obtained using the COV only.

Wang et al. used Neyman-Pearson rules and an SVM classifier for seizure detection as shown in Figure 7[39]. This method depends on the wavelet coefficients in addition to the ApEn in the wavelet domain as extracted features, and the detection is performed using Neyman-Pearson rules with an SVM. The approximate entropy is an entropy metric that takes into consideration the ordering of the points of the discrete time sequence at hand, and hence, it is a good measure for the regularity of the data sequence. Simulation results have shown a detection accuracy of 98% and a false detection rate of 6%.

Figure 7
figure 7

Wang et al. method for seizure detection.

Zainuddin et al. investigated the use of wavelet neural networks (WNNs) based on wavelet basis functions for seizure detection[40]. Firstly, the wavelet transform of EEG signals is estimated, and maximum, minimum, and standard deviation of the absolute values of the wavelet coefficients in each sub-band are extracted as features. These features are then fed to trained WNNs. The Gaussian, Mexican Hat, and Morlet wavelet activation functions have been investigated for classification. A cross-validation approach have been adopted in the simulation experiments. Simulation results revealed that the best performance was obtained with WNNs employing a Morlet wavelet activation function with order 4 Daubechies wavelet for feature extraction. The authors have carried simulation experiments on the University of Bonn database for scalp EEG signals[41]. The simulation results reported sensitivity and accuracy up to 98% with such combination.

Niknazar et al. presented a wavelet-based method for epileptic seizure detection that adopts recurrence quantification analysis (RQA) on EEG recordings and their delta, theta, alpha, beta, and gamma sub-bands extracted through a four-level Daubechies wavelet transform[42]. The RQA is well-suited for non-linear data analysis. It quantifies the number and duration of recurrences of the EEG signals based on phase space trajectories. The phase space is built on estimating a time delay and an embedding dimension, which are the features corresponding to each EEG signal state. The authors adopted an error-correcting output coding (ECOG) classifier for discriminating between three states: healthy, inter-ictal, and ictal. This method achieved an accuracy of 98.67%.

Daou and Labeau presented a wavelet-based approach for EEG signal compression and seizure detection, simultaneously[43]. The compression is performed with the set partitioning in hierarchical trees (SPIHT) algorithm. The SPIHT codes the LP and HP components of the signals with binary sequences. A dictionary is built for these binary sequences of normal and seizure activities. The seizure detection process is performed for each incoming segment by correlation estimation with the binary codes of normal sequences in the dictionary. If low correlation is detected, correlation estimation is performed with binary sequences of the HP components of seizure segments to ensure seizure activity. This method achieved an accuracy of about 90%.

Statistical analysis revealed that the spectra of normal EEG signals follow an inverse attenuation law over the bands of interest, which means that there are self-similar fluctuations in EEG signals over a multiplicity of scales. Based on this idea, Mehta et al. presented a scale-invariant seizure detection method[44]. In this method, the onset is detected, when the scale invariance is lost, which means that the slope of the regression line on a logarithmic plot for the wavelet scales 6 to 2 decreases.

Shoaib et al. presented a low-energy scalable processor for directly analyzing EEG signals acquired through compressive sensing[45]. This work adopts wavelet energy features. It studies the effect of compressive sensing on seizure detection performance showing a reduction of only 4% in detection sensitivity and an increase of only 0.15/h in false-alarm rate and 1 s in latency compared to baseline performance. The main advantage of this method is energy saving archived through compressive sensing.

Zandi et al. presented a wavelet packet real-time seizure detection algorithm working on scalp EEG signals[46]. They developed a patient-specific metric to differentiate between seizure and non-seizure states in the 1- to 30-Hz frequency range based on wavelet coefficients of seizure and non-seizure references. A combined seizure index (CSI) is derived from all EEG signal channels depending on the rhythmicity and relative energy of signal epochs for classification as seizure or non-seizure. A majority voting rule is used on the decisions from all channels to generate the CSI and raise an alarm when a seizure is detected. This algorithm was tested on 14 patients having 75.8 h with 63 seizures, and it achieved a sensitivity of 90.5%, a median detection delay of 7 s, and a false-alarm rate of 0.51 h-1.

1.4.2 Wavelet-domain seizure prediction

The same concepts of wavelet signal analysis used for seizure detection can be extended to seizure prediction, but with the target this time as the detection of the pre-ictal state. In general, EEG signals containing seizures are build up of constantly changing bursting levels. This signal nature enables discrimination between different signal activities from wavelet sub-bands. The residual sub-band wavelet entropy (RSWE) can be directly used to estimate the entropy of bursts from the sub-bands as proposed by Paul et al.[47]. The wavelet decomposition equation for an EEG signal using a sliding window of index m is given by:

s t = ∑ τ = - ∞ ∞ a L m τ ϕ 2 - L t - τ + ∑ l = 1 L ∑ τ = - ∞ ∞ C l m τ ψ 2 - l t - τ ,
(21)

where C 1 m τ , C 2 m τ ,…, C L m τ are the wavelet coefficients. The sequence a L m τ is the coarser-resolution signal for a high-level decomposition. The authors experimented lower and higher numbers of levels and found that the five levels are the optimum choice.

The relative wavelet energy (RWE) of the wavelet coefficients is used to derive a sub-band wavelet entropy (SWE) feature. For a sliding window with index m, the field potential (FP) is given by[48]:

E l m Ï„ = C l m Ï„ 2
(22)

The wavelet coefficients total energy is given by:

E r m total m = ∑ l ∑ τ E l m τ
(23)

The RWE can be expressed with normalization as:

p l m Ï„ = E l m Ï„ E r m total m
(24)

The SWE at scale l can be defined with a probabilistic approach as:

H C l m = ∑ τ p l m τ log p l m τ
(25)

The l th level RSWE of the n th frame is given by:

J C l m , n =H C l m , n - 1 N o ∑ n = 1 N o H C l m , n ,
(26)

where C l m , n represents the wavelet coefficients of the n th frame in the m th window.

For the estimation of the RSWE, a sliding window of 1-min length has been used assuming that the FP is stationary during this window. It was also assumed that the background FP fluctuations stay statistically unchanged for frames of 5-s length during the main sliding window. On the other hand, the FP fluctuations have another component that is statistically variant over the 5-s frames. Hence, an averaging process is performed on the background entropy components estimated in the main window. Consequently, resulting residual entropy corresponds only to the bursting components. A key observation on this approach is that there is an increment in the mean cortical RSWE during the transition from the pre-ictal to inter-ictal period. This increment can be used with an efficient slope change detector and used for early seizure prediction.

Hung et al. developed a very large scale integration (VLSI) setup of wavelet-based seizure prediction algorithm using the correlation dimension (Dc) and its correlation coefficient[48]. Their system comprises arithmetic functional and control units. The arithmetic functional units are the DWT, correlation dimension, correlation coefficient, and seizure prediction. The DWT of the pre-processed signal is estimated to decompose it into four sub-bands (0 to 63 Hz, 64 to 128 Hz, 0 to 1 Hz, and 32 to 64 Hz). The higher-frequency sub-bands are then represented in the phase space. The correlation dimension and correlation coefficient are estimated in the phase space as seizure prediction features. The authors evaluated their method utilizing iEEG data from 11 patients of the Freiburg database with 256-Hz sampling rate. Their method achieved an average of 87% sensitivity, 0.24/h false prediction rate, and in average a 27-min warning time ahead the ictal.

Chiang et al. developed an online wavelet-domain retraining method to improve the seizure prediction by enlarging the training dataset gradually[49]. Their method is based on the method of Mirowski et al.[50] that uses non-linear interdependence, cross-correlation, difference of Lyapunov exponents, and phase locking. Post-processing is used in this method to reduce the false-alarm rate if two consecutive patterns are classified as pre-ictal. The authors evaluated their method using three datasets: Freiburg database, CHB-MIT database (eight patients), and National Taiwan University Hospital database for scalp EEG (one patient)[51]. This method achieved sensitivities of 74.2% and 52.2% on intracranial and scalp databases, respectively. It also achieved an improvement in the sensitivity of off-line training on both databases by 29.0% and 17.4%, respectively.

Rojas et al. presented a seizure prediction method depending on brain excitability recognized with couplings between low-frequency phases (delta: 0.5 to 33 Hz, theta: 3 to 8 Hz) and high-frequency amplitudes (low gamma: 40 to 70 Hz, high gamma 70 to 140 Hz) of brain waves[52]. They evaluated this method on 20 patients from EPILEPSIAE scalp EEG database[53]. The EEG data was recorded using either depth or subdural stereotactic electrodes at a sampling rate 1,024 Hz with a total of 267 seizures and more than 3,400 h of inter-ictal activities. They found that in 50% of the cases, their predictor performed better than the random predictor, which is based on Poisson process, with an average sensitivity 98.9%, false rate of 1.84/h, and pre-ictal window length of 10 min.

Gadhoumi et al. presented an iEEG-based seizure prediction method based on measuring the similarity with a reference state as shown in Figure 8[54]. In the validation of this method, 1,565 h of continuous iEEG data for 17 patients having mesial temporal lobe epilepsy were used. These recordings have 175 seizures. Distance, inclusion, and persistence features are extracted in this method from the continuous wavelet transform of EEG recordings to discriminate between pre-ictal and inter-ictal states. The distance is a Euclidean distance between the center energy and the rest of energy points computed from the wavelet coefficients. Inclusion is the percentage of energy points with entropy confined to a pre-specified distance. Inclusion represents the time interval in which the maximum number of successive 2-s points has energy and entropy profiles confined to the pre-specified distance. An SVM classifier has been used in the signal discrimination and a comparison has been performed with a random statistical predictor. Simulation results have shown a sensitivity of 85% and a false-alarm rate of 0.35/h. The authors came to a conclusion that state similarity measures can be used for seizure prediction above chance in 41% of the patients.

Figure 8
figure 8

Gadhoumi et al. method showing training and testing stages.

Gadhoumi et al. also presented a method to discriminate between pre-ictal and inter-ictal states using features extracted from the high-frequency sub-bands of iEEG signals[55]. The selected features are the wavelet energy and entropy extracted from different signal epochs. The estimated energy and entropy are compared to reference energy and entropy for pre-defined signals with pre-state and seizure activities, and based on distance metrics, the decisions are taken from different channels and fused. Sensitivity and false-alarm rate evaluation revealed a sensitivity of about 80% and a false positive rate ranging from 0.09 to 0.7 for different patients.

Wang et al. presented a wavelet-based online adaptive seizure prediction system[56]. This system adopts Lyapunov exponent, correlation dimension, Hurst exponent, and entropy features extracted from the wavelet transform of EEG recordings. It adopts also a KNN classifier. The adaptation is performed in this system with a reinforcement learning algorithm. A 150-min prediction horizon used on ten patients and the system achieved the best prediction results of 73% sensitivity and 67% specificity.

Soleimani et al. presented a simple and fast adaptive online method for the detection of pre-ictal patterns depending on multiple features as illustrated in Figure 9[57]. These features are time domain and wavelet domain. The time-domain features are the curve length, the average energy, non-linear energy, six-order power at time n, kurtosis, skewness, and variance. The wavelet-domain feature include mean of absolute values, average power, standard deviation, absolute mean of sub-bands of a fifth level Daubechies wavelet transform. In this method, a neuro-fuzzy model is used for combined features learning in an adaptive manner. An adaptive tuning process is used in the classifier operation to build a personal seizure predictor. Freiburg database of intracranial recordings for 21 patients has been used with this classifier. Simulation results revealed that on-line adaptive seizure prediction achieves better results than off-line non-adaptive seizure prediction. The percentage of prediction was 99.52%, and the FPR was 0.1417/h.

Figure 9
figure 9

Soleimani et al. seizure prediction method.

It is possible to use some time-domain features with wavelet-domain features to enhance the detectability of seizures. Costa et al. have selected 14 features for efficient seizure prediction from EEG recordings[58]. These features include energy estimated from time-domain signals, energy variation, energy level, non-linear statistics, and sub-band energies extracted from the wavelet sub-bands. They used a neural network classifier for signal classification into four states: pre-ictal, ictal, inter-ictal, and post-ictal. They achieved an average specificity of 99%, an average sensitivity of 83%, and an average accuracy of 96% on patient records from Freiburg database. Moghim and Corne compared the Costa et al. results with multi-class SVM and evolved neural network classifiers[59]. They carried out this comparative study on one patient (patient 2: 135 min, 3 seizures, 30 to 40 min before and 10 min after each seizure) from Freiburg database, and they reported that 8- to 10-min detection before the onset can be achieved with reasonable specificity and sensitivity.

1.5 Empirical mode decomposition

The EMD is a signal decomposition, which transforms a signal into a group of intrinsic mode functions (IMFs). For EEG seizure detection, these IMFs show different behavior with normal and abnormal activities in the signals. Features can also be extracted from the IMFs and tested for seizure detection and prediction. The steps to extract these IMFs from an original signal x(t) are summarized below[60]:

  1. 1.

    Determine the signal envelope by maxima and minima point estimation and interpolate between them.

  2. 2.

    The local mean, m(t) is estimated using the envelope as follows:

    m t = e min t + e max t 2
    (27)

    where emin(t) and emax(t) are the envelope minimum and maximum values respectively.

  3. 3.

    The mean is subtracted from the original signal to get h(t) = x(t) - m(t).

  4. 4.

    If h(t) does not satisfy the IMF criteria of a difference of at most 1 between the number of extrema (maxima and minima) and number of zero crossings, we go to step 1 with h(t) as a new input.

  5. 5.

    The obtained h(t) is stored as an IMF in case it satisfies the criteria of an IMF, c i (t) = h(t). Hence, this IMF is removed from the original signal by subtraction, r(t) = x(t) - c i (t), where i is the i th IMF.

  6. 6.

    Similar steps are repeated beginning from step 1.

The Hilbert transform (HT) is performed on each IMF to get c ˜ i t provided thatz t = c i t +j c ˜ i t is analytic. Both amplitude and phase of z(t) are given by:

A t = c i 2 t + c ˜ i 2 t
(28)
ϕ t =arctan c ˜ i 2 t c i 2 t
(29)

The instantaneous frequency is estimated as:

ω= d ϕ t d t
(30)

1.5.1 EMD seizure detection

Eftekhar et al. used the EMD approach for seizure detection[60]. They adopted features such as the frequency rise at the seizure onset with the EMD in a patient-specific manner. Their simulation results have shown that the Hilbert transform can be used to decompose EEG signals into components, from which features can be extracted for seizure onset detection.

Tafreshi et al. evaluated the performance of the EMD in discriminating epileptic seizure data from normal data using means of the absolute of the IMFs as features[61]. They compared this approach for feature extraction with wavelet features using both multi-layer perceptron (MLP) and self-organizing map (SOM) neural networks. Results have shown that the EMD approach is better in performance than the wavelet approach with success rates up to 95%, and they revealed that four empirical modes are enough to obtain good results. In addition, the results have shown that a window length of 1,500 samples is appropriate to obtain good recognition rates. The MLP networks are superior in performance to the SOM networks.

Orosco et al. presented a seizure detection approach based on the energies of IMFs as discriminating features between seizure and non-seizure activities as shown in Figure 10[62]. In this approach, the IMF energies are compared with certain thresholds for decision making. It was tested on nine patient records from Freiburg database with invasive nature. The obtained sensitivity and specificity were 56.41% and 75.86%, respectively, using 39 seizure records.

Figure 10
figure 10

Orosco et al. method for epileptic seizure detection with EMD.

Guarnizo and Delgado presented a modified EMD approach, in which mutual information is used for feature selection in the EMD domain[63]. These features include the average or instantaneous frequency and amplitude for all EMD components. Higher-order statistics such as the skewness and kurtosis in addition to Shannon’s entropy have been selected as features extracted from the energy estimated with the Teager energy operator (TEO) over all EMD components[64–66]. This approach adopts a linear Bayes classifier and it achieved an accuracy of 98%.

Alam and Bhuiyan presented a seizure detection method depending on extracting kurtosis, skewness, largest Lyapunov exponent, variance, approximate entropy, and correlation dimension from the EMD of EEG signals with artificial neural network classifiers[67, 68]. This method achieved a 100% sensitivity in seizure detection and has shown a superiority as compared to time-frequency techniques and band-limited techniques in the computational complexity.

Bajaj and Pachori presented an EMD-based seizure detection method to detect focal temporal lobe epilepsy[69]. In this method, they used Hilbert transformation of IMFs which were obtained by an EMD process. Epileptic seizures are then detected based on the instantaneous area estimated from the trace of analytic IMFs of EEG signals. The performance of this epileptic detection method was evaluated on Freiburg database and achieved a sensitivity of 90%, a specificity of 89.31%, and an error detection rate of 24.25%.

The local mean of EMD can be used as a statistical feature for seizure detection. This local mean is obtained by averaging the lower and upper envelopes obtained through interpolation between the local maxima and minima. If these local maxima and minima are not defined as in the case of multivariate signals, another alternative which is the multivariate EMD (MEMD) can be used instead. The MEMD depends on signal projections along n-dimensional spaces to generate n-dimensional envelopes, which are then averaged to get the local mean. The projection direction vectors are based on spherical and polar coordinates. To sample the n-sphere, quasi-Monte Carlo low-discrepancy sequences are exploited for sampling enhancement. This style of sampling is non-uniform but not random. Its objective is to get the most useful samples over a certain space. The other steps of the algorithm to estimate the MEMD are similar to the standard EMD algorithm. The use of the MEMD enables the multi-channel EEG signal decomposition into narrow frequency bands that can be analyzed separately for better detectability of seizures. In addition, the mean frequency of the signal segments can be used as a discriminative feature for seizure detection. This mean frequency can be calculated by applying the Hilbert transform on the resulting IMFs. Rehman et al. investigated the use of the MEMD with the mean frequency as possible features for EEG seizure detection[70], but this proposal needs further studies.

1.5.2 EMD seizure prediction

Qi et al. suggested the use of EMD for seizure prediction with a new feature, called IMF-VoE. This feature combines three IMFs obtained from the EMD of an EEG signal in addition to the range variance between upper and lower envelopes (VoE) in the EMD domain[71]. The authors tested this method using 80.4 h of EEG data containing ten seizures for four patients. This method achieved a sensitivity of 100% and a false detection rate of 0.16/h. The estimated average time delays were 19.4, 13.2, and 10.7 s for false detection rates of 0.16, 0.27, and 0.41/h, respectively, using different thresholds.

1.6 SVD methods

The SVD operating on a matrix A decomposes it into matrices U, S, and V[72, 73]:

A=US V T
(31)

The matrices U and V are orthogonal such that UT U = I, and VT V = I. S = diag(σ1,…,σ P ), where σ1 ≥ σ2 ≥ …σ P  ≥ 0 is the matrix of SVs of A. The matrix U contains the left singular vectors of A, while the matrix V contains the right singular vectors of A. An important characteristic of the SVD that can be used in EEG seizure detection is that the SVs are not largely affected by little disturbances in the matrix A. This property can be used for the detection of seizure activities taking into consideration the slight variations between seizures[72, 73].

Vanrumste et al. developed an SVD-based algorithm for EEG seizure detection[74]. In this algorithm, the EEG is segmented into overlapping epochs, which are formulated as 2-D arrays to allow SVD. Most of the signal energy, which differs from seizure to non-seizure activities, is concentrated in the first SVs. After that, an EEG dipole source analysis adopting a single-dipole model is implemented on the EEG segments. This analysis assumes that each spike results from a dipole in the human brain and performs a localization process for the position of this source dipole[75]. This yields dipole parameters in addition to a relative residual energy (RRE). A seizure alarm on an epoch is raised if the SVD indicates a dominant source and the RRE has a low value. The algorithm has been investigated on synthetic EEG signals obtained from two sources, synchronous and asynchronous. In the synchronous case, the main metric is the RRE, and in the asynchronous case, the SVD and RRE are of major concern. The same algorithm has been investigated with real EEG signals having two spikes and an eye-blink artifact. The algorithm has shown that the RRE was always low for all three events.

Shahid et al. presented an algorithm based on SVD for the detection of seizures[76]. In this algorithm, the SVD is applied sequentially on a sliding window of the EEG signal of 1-s width and then r singular values are obtained and used to indicate sudden changes in the signals. EEG recordings of four pediatric patients with 20 seizures have been used to validate this algorithm, and the results indicated the sensitivity of the SVs to the changes in the EEG signals due to epileptic seizure.

1.7 ICA and PCA methods

The SVD methods presented in above section adopt a strategy of transforming the 1-D data to a 2-D array, but the PCA and ICA techniques in this section adopt a covariance approach to obtain the PCs. ICA is signal decomposition that transforms a multivariate signal into additive, non-Gaussian, and statistically independent components[77]. The main principle that the ICA depends on is the maximization of the statistical independence between the estimated components. This can be guaranteed through either mutual information minimization or non-Gaussianity maximization. For mutual information minimization, measures like Kullback–Leibler divergence and maximum entropy are exploited. On the other hand, for non-Gaussianity maximization, central limit theorem, higher-order statistics such as kurtosis, and negentropy are used[77]. The ICA depends mainly on some pre-processing techniques such as mean removal, whitening, and dimensionality reduction. Both whitening and dimensionality reduction can be achieved with PCA or SVD. Whitening ensures an equal treatment to all dimensions before the algorithm is run.

1.7.1 Seizure detection

Both ICA and PCA have been used as signal separation algorithms to enhance the detectability of seizures from EEG signals by separating artifacts from these signals[78]. Xie and Krishnan proposed a multi-scale PCA method combining both DWT and PCA for de-noising and EEG signal decomposition[79]. They developed an empirical classification (EC) method using spatial and temporal features. This method achieved high classification accuracy.

1.7.2 Seizure prediction

Miri and Nasrabadi proposed a seizure prediction technique based on chaos theory and non-linear dynamics to create a return map depending on zero crossings[80]. This method consists of nine steps: raw EEG data recording from six channels, baseline noise reduction through filtering, signal segmentation to non-overlapping 5-min sections, PCA decomposition of the signal, zero-crossing rate estimation for the first PCA component, resampling of the second component based on the estimated zero-crossing rate, creation of a series of samples to construct a Poincare map, feature extraction, and finally estimation of the seizure risk. They evaluated this method with iEEG data from six patients of Freiburg database with 256-Hz sampling rate, 50-min pre-ictal, and 24 h of non-seizure data. Their method achieved a 20 ± 5-min prediction time, an 86.6% sensitivity, and a 0.067/h false-alarm rate.

Williamson et al. presented a seizure prediction method that is based on estimating eigenspectral features from space-delay correlation and covariance matrices of EEG signal blocks with multiple delay scales[81]. An SVM classifier has been used in this method. An averaging process over 15-min windows is used as a post-processing step to get the final prediction score. This method was tested on the recordings of 19 patients from the Freiburg database having at least three seizures. It succeeded in predicting 71 out of 83 seizures. The false prediction rate was 13.8/h.

2 Conclusions

Table 1 shows a comparison between the different seizure detection and prediction methods. It is clear from this table that most seizure detection and prediction methods adopt time- or wavelet-domain features. For wavelet-domain method, several papers have adopted five-level decomposition for robust feature extraction. Few methods have used hybrid features like time and wavelet-domain features and achieved better performance than using features from one domain only. It is clear also that the EMD is a promising trend for seizure detection and prediction that needs further investigation. Also, we can say that seizure detection and prediction methods based on classifiers are better in performance than methods that do not implement classifiers. Multi-channel techniques are also more superior in performance than single-channel techniques.

Table 1 Summary of seizure detection and prediction methods

References

  1. National Institute of Neurological Disorders and Stroke . Accessed 15 Sept 2014 http://www.ninds.nih.gov/

  2. Trans Cranial Technologies Ltd: 10/20 System Positioning Manual. Trans Cranial Technologies Ltd, Kowloon; 2012.

    Google Scholar 

  3. Acharya UR, Sree SV, Swapna G, Martis RJ, Suri JS: Automated EEG analysis of epilepsy: a review. Knowl.-Based Syst. 2013, 45: 147-165.

    Article  Google Scholar 

  4. Binder DK, Haut SR: Toward new paradigms of seizure detection. Epilepsy Behav. 2013, 26(3):247-252. 10.1016/j.yebeh.2012.10.027

    Article  Google Scholar 

  5. Hunyadi B, Signoretto M, Paesschen WV, Suykens JAK, Huffel SV, Vos MD: Incorporating structural information from the multichannel EEG improves patient-specific seizure detection. Clin. Neurophysiol. 2012, 123: 2352-2361. 10.1016/j.clinph.2012.05.018

    Article  Google Scholar 

  6. Rasekhi J, Mollaei MRK, Bandarabadi M, Teixeira CA, Dourado A: Preprocessing effects of 22 linear univariate features on the performance of seizure prediction methods. J. Neurosci. Methods 2013, 217: 9-16. 10.1016/j.jneumeth.2013.03.019

    Article  Google Scholar 

  7. Carney PR, Myers S, Geyer JD: Seizure prediction: methods. Epilepsy Behav. 2011, 22: S94-S101.

    Article  Google Scholar 

  8. McSharry PE, He T, Smith LA, Tarassenko L: Linear and non-linear methods for automatic seizure detection in scalp electro-encephalogram recordings. Med. Biol. Eng. Comput. 2002, 40: 447-461. 10.1007/BF02345078

    Article  Google Scholar 

  9. McSharry PE, Smith LA, Tarassenko L: Comparison of predictability of epileptic seizures by a linear and a nonlinear method. IEEE Trans. Biomed. Eng. 2003, 50(5):628-633. 10.1109/TBME.2003.810688

    Article  Google Scholar 

  10. Sakkalis V, Giannakakis G, Farmaki C, Mousas A, Pediaditis M, Vorgia P, Tsiknakis M: Absence seizure epilepsy detection using linear and nonlinear EEG analysis methods. In Proceedings of the 35th Annual International Conference of the IEEE EMBS. Osaka, Japan; 6333-6336. 3–7 July 2013

  11. Tzallas AT, Tsipouras MG, Tsalikakis DG, Karvounis EC, Astrakas L, Konitsiotis S, Tzaphlidou M: Automated epileptic seizure detection methods: a review study. In Epilepsy - Histological, Electroencephalographic and Psychological Aspects. Edited by: Stevanovic D. InTech Europe, Rijeka; 2012:276.

    Google Scholar 

  12. Zhou W, Liu Y, Yuan Q, Li X: Epileptic seizure detection using lacunarity and Bayesian linear discriminant analysis in intracranial EEG. IEEE Trans. Biomed. Eng. 2013, 60(12):3375-3381.

    Article  Google Scholar 

  13. Runarsson TP, Sigurdsson S: On-line detection of patient specific neonatal seizures using support vector machines and half-wave attribute histograms. In The International Conference on Computational Intelligence for Modelling, Control and Automation, and International Conference on Intelligent Agents, Web Technologies and Internet Commerce (CIMCA-IAWTIC). Vienna; 673-677. 28–30 Nov 2005

  14. Yoo J, Yan L, El-Damak D, Bin Altaf MA, Shoeb AH, Chandrakasan AP: An 8 channel scalable EEG acquisition SoC with patient-specific seizure classification and recording processor. IEEE J. Solid State Circuits 2013, 48(1):214-228.

    Article  Google Scholar 

  15. Goldberger AL, Amaral LAN, Glass L, Hausdorff JM, Ivanov P, Mark RG, Mietus JE, Moody GB, Peng C-K, HE Stanley HE: PhysioBank, PhysioToolkit, and PhysioNet: components of a new research resource for complex physiologic signals. Circulation 2000, 101(23):e215-e220. http://physionet.org/pn6/chbmit/ 10.1161/01.CIR.101.23.e215

    Article  Google Scholar 

  16. Dalton A, Patel S, Chowdhury AR, Welsh M, Pang T, Schachter S, Olaighin G, Bonato P: Development of a body sensor network to detect motor patterns of epileptic seizures. IEEE Trans. Biomed. Eng. 2012, 59(11):3204-3211.

    Article  Google Scholar 

  17. Zandi AS, Tafreshi R, Javidan M, Dumont GA: Predicting temporal lobe epileptic seizures based on zero-crossing interval analysis in scalp EEG. In Proceedings of the 32nd Annual International Conference of the IEEE EMBS. Buenos Aires; 5537-5540. 31 Aug–4 Sept 2010

  18. Zandi AS, Tafreshi R, Javidan M, Dumont GA: Predicting epileptic seizures in scalp EEG based on a variational Bayesian Gaussian mixture model of zero-crossing intervals. IEEE Trans. Biomed. Eng. 2013, 60(5):1401-1413.

    Article  Google Scholar 

  19. Aarabi A, He B: A rule-based seizure prediction method for focal neocortical epilepsy. Clin. Neurophysiol. 2012, 123(6):1111-1122. 10.1016/j.clinph.2012.01.014

    Article  Google Scholar 

  20. Sprott JC, Rowlands G: Improved correlation dimension calculation. Int J. Bifurcation. Chaos. 2001, 11(7):1865-1880. 10.1142/S021812740100305X

    Article  MathSciNet  MATH  Google Scholar 

  21. Gu SJ, Sun CP, Lin HQ: Universal role of correlation entropy in critical phenomena. J. Phys. A Math. Theor. 2008, 41(2):1-10.

    Article  MathSciNet  Google Scholar 

  22. Doganaksoy A, Gologlu F: On the Lempel-Ziv complexity of sequences. Lect. Notes Comput. Sci 2006, 4086: 180-189. 10.1007/11863854_15

    Article  MathSciNet  Google Scholar 

  23. Dingwell JB: Lyapunov Exponents. Wiley Encyclopedia of Biomedical Engineering, New York; 2006.

    Book  Google Scholar 

  24. University of Freidberg, Seizure Prediction Project Freidburg. University of Freiburg; 2014. . Accessed 15 Sept 2014 http://epilepsy.uni-freiburg.de/freiburg-seizure-prediction-project/eeg-database

  25. Schelter B, Drentrup HF, Ihle M, Bonhage AS, Timmer J: Seizure prediction in epilepsy: from circadian concepts via probabilistic forecasting to statistical evaluation. In Proceedings of the IEEE International Conference of IEEE EMBS. Boston, MA, USA; 1624-1627. 30 Aug 30–3 Sept 2011

  26. Wang S, Chaovalitwongse WA, Wong S: A novel reinforcement learning framework for online adaptive seizure prediction. In Proceedings of the IEEE International Conference on Bioinformatics and Biomedicine. Hong Kong; 499-504. 18–21 Dec 2010

  27. Bedeeuzzaman M, Fathima T, Khan YU, Farooq O: Seizure prediction using statistical dispersion measures of intracranial EEG. Biomed. Signal. Process. Control. 2014, 10: 338-341.

    Article  Google Scholar 

  28. Li S, Zhou W, Yuan Q, Liu Y: Seizure prediction using spike rate of intracranial EEG. IEEE Trans. Neural Syst. Rehabil. Eng. 2013, 21(6):880-886.

    Article  Google Scholar 

  29. Stamoulis C, Gruber LJ, Schomer DL, Chang BS: High-frequency neuronal network modulations encoded in scalp EEG precede the onset of focal seizures. Epilepsy Behav. 2012, 23(4):471-480. 10.1016/j.yebeh.2012.01.001

    Article  Google Scholar 

  30. Chisci L, Mavino A, Perferi G, Sciandrone M, Anile C, Colicchio G, Fuggetta F: Real-time epileptic seizure prediction using AR models and support vector machines. IEEE Trans. Biomed. Eng. 2010, 57(5):1124-1132.

    Article  Google Scholar 

  31. Tetzlaff R, Senger V: The seizure prediction problem in epilepsy: cellular nonlinear networks. IEEE Circuits Syst. Mag. 2012, 12(4):8-20.

    Article  Google Scholar 

  32. Rana P, Lipor J, Lee H, Drongelen WV, Kohrman MH, Veen BV: Seizure detection using the phase-slope index and multichannel ECoG. IEEE Trans. Biomed. Eng. 2012, 59(4):1125-1134.

    Article  Google Scholar 

  33. Khamis H, Mohamed A, Simpson S: Frequency–moment signatures: a method for automated seizure detection from scalp EEG. Clin. Neurophysiol. 2013, 124(12):2317-2327. 10.1016/j.clinph.2013.05.015

    Article  Google Scholar 

  34. Acharya UR, Molinari F, Sree SV, Chattopadhyay S, Ng KH, Suri JS: Automated diagnosis of epileptic EEG using entropies. Biomed. Signal. Process. Control. 2012, 7(4):401-408. 10.1016/j.bspc.2011.07.007

    Article  Google Scholar 

  35. Prochazka A, Uhlir J, Rayner PJW, Kingsbury NJ: Signal Analysis and Prediction. Birkhauser Inc., Switzerland; 1998.

    Book  MATH  Google Scholar 

  36. Liu Y, Zhou W, Yuan Q, Chen S: Automatic seizure detection using wavelet transform and SVM in long-term intracranial EEG. IEEE Trans. Neural Syst. Rehabil. Eng. 2012, 20(6):749-755.

    Article  Google Scholar 

  37. Panda R, Khobragade PS, Jambhule PD, Jengthe SN, Pal PR, Gandhi TK: Classification of EEG signal using wavelet transform and support vector machine for epileptic seizure diction. In Proceedings of International Conference on Systems in Medicine and Biology. Kharagpur; 405-408. 16–18 Dec 2010

  38. Khan YU, Rafiuddin N, Farooq O: Automated seizure detection in scalp EEG using multiple wavelet scales. In Proceedings of the IEEE International Conference on Signal Processing, Computing and Control (ISPCC). Waknaghat Solan; 1-5. 15–17 March 2012

  39. Wang C, Zhang C, Zou J, Zhang J: Performance evaluation for epileptic electroencephalogram (EEG) detection by using Neyman–Pearson criteria and a support vector machine. Physica. A. 2012, 391(4):1602-1609. 10.1016/j.physa.2011.09.010

    Article  MathSciNet  Google Scholar 

  40. Zainuddin Z, Huong LK, Pauline O: On the use of wavelet neural networks in the task of epileptic seizure detection from electroencephalography signals. Proc Comput. Sci. 2012, 11(2012):149-159.

    Article  Google Scholar 

  41. Andrzejak RG: EEG time series download page. University of Bonn; 2003.http://epileptologie-bonn.de/cms/upload/workgroup/lehnertz/eegdata.html . Accessed

    Google Scholar 

  42. Niknazar M, Mousavi SR, Vahdat BV, Sayyah M, Niknazar M, Mousavi SR, Vahdat BV, Sayyah M: A new framework based on recurrence quantification analysis for epileptic seizure detection. IEEE J. Biomed Health Inform. 2013, 17(3):572-578.

    Article  Google Scholar 

  43. Daou H, Labeau F: Dynamic dictionary for combined eeg compression and seizure detection. IEEE J. Biomed Health Inform. 2014, 18(1):247-256.

    Article  Google Scholar 

  44. Mehta S, Onaral B, Koser R: Detection of seizure onset using wavelet analysis. In Proceedings of the IEEE Conference of Engineering in Medicine and Biology Society, vol. 2. Baltimore, MD, USA; 1220-1221. 03–06 Nov 1994

  45. Shoaib M, Lee KH, Jha NK, Verma N: A 0.6–107 μW energy-scalable processor for directly analyzing compressively-sensed EEG. IEEE Trans. Circuits Syst I. Reg. Papers 2014, 61(4):1105-1118.

    Article  Google Scholar 

  46. Zandi AS, Javidan M, Dumont GA, Tafreshi R: Automated real-time epileptic seizure detection in scalp EEG recordings using an algorithm based on wavelet packet transform. IEEE Trans. Biomed. Eng. 2010, 57(7):1639-1651.

    Article  Google Scholar 

  47. Paul JS, Patel CB, Al-Nashash H, Zhang N, Ziai WC, Mirski MA, Sherman DL: Prediction of PTZ-induced seizures using wavelet-based residual entropy of cortical and subcortical field potentials. IEEE Trans. Biomed. Eng. 2003, 50(5):640-648. 10.1109/TBME.2003.810683

    Article  Google Scholar 

  48. Hung SH, Chao CF, Wang SK, Lin BS, Lin CT: VLSI implementation for Epileptic Seizure Prediction System based on Wavelet and Chaos Theory. In Proceedings of the IEEE TENCON. Fukuoka; 364-368. 21–24 Nov 2010

  49. Chiang CY, Chang NF, Chen TC, Chen HH, Chen LG: Seizure prediction based on classification of EEG synchronization patterns with on-line retraining and post-processing scheme. In Proceedings of the International Conference of the IEEE EMBS. Boston, MA, USA; 7564-7569. 30 Aug–3 Sept 2011

  50. Mirowski PW, LeCun Y, Madhavan D, Kuzniecky R: Comparing SVM and convolutional networks for epileptic seizure prediction from intracranial EEG. In IEEE Workshop on Machine Learning for Signal Processing. Cancun; 244-249. 16–19 Oct 2008

  51. National Taiwan University Medical Library 2013.http://ntuml.mc.ntu.edu.tw/Index.action . Accessed 15 Sept 2014

  52. Rojas CA, Valderrama M, Witon A, Navarro V, Quyen MLV: Probing cortical excitability using cross-frequency coupling in intracranial EEG recordings: a new method for seizure prediction. In Proceedings of the International Conference of the IEEE EMBS. Boston, MA, USA; 1632-1635. 30 Aug–3 Sept 2011

  53. Epilepsiae 2014.http://www.epilepsiae.eu/project_outputs/european_database_on_epilepsy . Accessed 15 Sept 2014

  54. Gadhoumi K, Lina JM, Gotman J: Seizure prediction in patients with mesial temporal lobe epilepsy using EEG measures of state similarity. Clin. Neurophysiol. 2013, 124(9):1745-1754. 10.1016/j.clinph.2013.04.006

    Article  Google Scholar 

  55. Gadhoumi K, Lina JM, Gotman J: Discriminating preictal and interictal states in patients with temporal lobe epilepsy using wavelet analysis of intracerebral EEG. Clin. Neurophysiol. 2012, 123(10):1906-1916. 10.1016/j.clinph.2012.03.001

    Article  Google Scholar 

  56. Wang S, Chaovalitwongse WA, Wong S: Online seizure prediction using an adaptive learning approach. IEEE Trans. Knowl. Data Eng. 2013, 25(12):2854-2866.

    Article  Google Scholar 

  57. Soleimani HB, Lucas C, Araabi BN, Schwabe L: Adaptive prediction of epileptic seizures from intracranial recordings. Biomed Signal. Process. Control. 2012, 7(5):456-464. 10.1016/j.bspc.2011.11.007

    Article  Google Scholar 

  58. Costa RP, Oliveira P, Rodrigues G, Direito B, Dourado A: Epileptic seizure classification using neural networks with 14 features. Lect Notes Comput Sci 2008, 5178: 281-288. 10.1007/978-3-540-85565-1_35

    Article  Google Scholar 

  59. Moghim N, Corne D: Evaluating bio-inspired approaches for advance prediction of epileptic seizures. In Proceedings of the Word Congress on Nature and Biologically Inspired Computing (NaBIC). Salamanca; 540-545. 19–21 Oct 2011

  60. Eftekhar A, Vohra F, Toumazou C, Drakakis EM, Parker K: Hilbert-Huang transform: preliminary studies in epilepsy and cardiac arrhythmias. In Proceedings of the IEEE Biomedical Circuits and Systems Conference, BioCAS. Baltimore, MD, USA; 373-376. 20–22 Nov 2008

  61. Tafreshi AK, Nasrabadi AM, Omidvarnia AH: Epileptic seizure detection using empirical mode decomposition. In Proceedings of the IEEE International Symposium on Signal Processing and Information Technology, ISSPIT. Sarajevo; 238-242. 16–19 Dec 2008

  62. Orosco L, Laciar E, Correa AG, Torres A, Graffigna JP: An epileptic seizures detection algorithm based on the empirical mode decomposition of EEG. In Proceedings of the International Conference of the IEEE EMBS. Minneapolis, MN, USA; 2651-2654. 3–6 Sept 2009

  63. Guarnizo C, Delgado E: EEG single-channel seizure recognition using empirical mode decomposition and normalized mutual information. In Proceedings of the IEEE International Conference on Signal Processing (ICSP). Beijing; 1-4. 24–28 Oct 2010

  64. Maragos P, Kaiser J, Quatieri T: On separating amplitude from frequency modulations using energy operators. In Proceedings of IEEE International Conference on Acoustics, Speech, and Signal Processing, ICASSP-92, vol. 2. San Francisco, CA, USA; 1-4. 23–26 Mar 1992

  65. Teager HM: Some observations on oral air flow during phonation. IEEE Trans Acoust. Speech. Signal. Process. 1980, 28(5):599-601. 10.1109/TASSP.1980.1163453

    Article  Google Scholar 

  66. Teager HM, Teager SM: Evidence for nonlinear sound production mechanisms in the vocal tract. In Speech Production and Speech Modelling. Edited by: Hardcastle WJ, Marchal A. Springer, Amsterdam; 1990:241-261.

    Chapter  Google Scholar 

  67. Alam SMS, Bhuiyan MIH: Detection of epileptic seizures using chaotic and statistical features in the EMD domain. In Proceedings of the India Conference (INDICON). Hyderabad; 1-4. 16–18 Dec 2011

  68. Alam SMS, Bhuiyan MIH: Detection of seizure and epilepsy using higher order statistics in the EMD domain. IEEE J. Biomed Health Inform. 2013, 17(2):312-318.

    Article  Google Scholar 

  69. Bajaj V, Pachori RB: Epileptic seizure detection based on the instantaneous area of analytic intrinsic mode functions of EEG signals. Biomed. Eng. Lett. 2013, 3(1):17-21. 10.1007/s13534-013-0084-0

    Article  Google Scholar 

  70. Rehman NU, Xia Y, Mandic DP: Application of multivariate empirical mode decomposition for seizure detection in EEG signals. In Proceedings of the International Conference of the IEEE EMBS. Buenos Aires; 1650-1653. 31 Aug–4 Sept 2010

  71. Qi Y, Wang Y, Zheng X, Zhang J, Zhu J, Guo J: Efficient epileptic seizure detection by a combined IMF-VoE feature. In Proceedings of the International Conference of the IEEE EMBS. San Diego, CA, USA; 5170-5173. 28 Aug–1 Sept 2012

  72. Shieh JM, Lou DC, Chang MC: A semi-blind watermarking scheme based on singular value decomposition. Comp. Stand. Inter. 2006, 28(4):428-440. 10.1016/j.csi.2005.03.006

    Article  Google Scholar 

  73. Abd El-Samie FE: Information Security for Automatic Speaker Identification. 1st edition. Springer, Berlin; 2011.

    Book  Google Scholar 

  74. Vanrumste B, Jones RD, Bones PJ: Detection of focal epileptiform activity in the EEG: an SVD and dipole model approach. In Proceedings of the Second IEEE Joint EMBS/BMES Conference, vol. 3. Houston, TX, USA; 2031-2032. 23–26 Oct 2002

  75. Hoey GV, Vanrumste B, Van de Walle R, Boon P, Lemahieu I, D’Hav MB, Vonck K: Detection and localization of epileptic brain activity using an artificial neural network for dipole source analysis. In Proceedings of EUSIPCO. Tampere, Finland; 2000:4-8.

    Google Scholar 

  76. Shahid A, Kamel N, Malik AS, Jatoi MA: Epileptic Seizure Detection using the singular values of EEG signals. In Proceedings of the IEEE Conference on Complex Medical Engineering. Beijing; 652-655. 25–28 May 2013

  77. Comon P: Independent component analysis: a new concept. Signal Process. 1994, 36(3):287-314. 10.1016/0165-1684(94)90029-9

    Article  MATH  Google Scholar 

  78. Shih YH, Chen TJ, Yang CH, Chiueh H: Hardware-efficient EVD processor architecture in FastICA for epileptic seizure detection. In Proceedings of the Signal & Information Processing Association Annual Summit and Conference (APSIPA ASC). Hollywood, CA, USA; 1-4. 3–6 Dec 2012

  79. Xie S, Krishnan S: Signal decomposition by multi-scale PCA and its applications to long-term EEG signal classification. In Proceedings of the IEEE International Conference on Complex Medical Engineering. Harbin Heilongjiang; 532-537. 22–25 May 2011

  80. Miri MR, Nasrabadi AM: A new seizure prediction method based on return map. In Proceedings of the Iranian Conference on BioMedical Engineering. Tehran; 244-248. 14–16 Dec 2011

  81. Williamson JR, Bliss DW, Browne DW, Narayanan JT: Seizure prediction using EEG spatiotemporal correlation structure. Epilepsy Behav. 2012, 25(2):230-238. 10.1016/j.yebeh.2012.07.007

    Article  Google Scholar 

Download references

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Fathi E Abd El-Samie.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors’ original submitted files for images

Rights and permissions

Open Access  This article is licensed under a Creative Commons Attribution 4.0 International License, which permits use, sharing, adaptation, distribution and reproduction in any medium or format, as long as you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons licence, and indicate if changes were made.

The images or other third party material in this article are included in the article’s Creative Commons licence, unless indicated otherwise in a credit line to the material. If material is not included in the article’s Creative Commons licence and your intended use is not permitted by statutory regulation or exceeds the permitted use, you will need to obtain permission directly from the copyright holder.

To view a copy of this licence, visit https://creativecommons.org/licenses/by/4.0/.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Alotaiby, T.N., Alshebeili, S.A., Alshawi, T. et al. EEG seizure detection and prediction algorithms: a survey. EURASIP J. Adv. Signal Process. 2014, 183 (2014). https://doi.org/10.1186/1687-6180-2014-183

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/1687-6180-2014-183

Keywords