特征提取算法之一,在运动想象应用较多。
共空间模式(CSP)是一种对两分类任务下的空域滤波特征提取算法,能够从多通道的脑机接口数据里面提取出每一类的空间分布成分。公共空间模式算法的基本原理是利用矩阵的对角化,找到一组最优空间滤波器进行投影,使得两类信号的方差值差异最大化,从而得到具有较高区分度的特征向量。
假设 X1 X 1 和 X2 X 2 分别为两分类想象运动任务下的多通道诱发响应时-空信号矩阵,他们的维数均为 N∗T N ∗ T , N N 为脑电通道数,T T 为每个通道所采集的样本数。为了计算其协方差矩阵,现在假设 N<T N < T 。在两种脑电想象任务情况下,一般采用复合源的数学模型来描述 EEG E E G 信号,为了方便计算,一般忽略噪声所产生的影响。 X1 X 1 和 X2 X 2 可以分别写成:
(1)式中: S1 S 1 和 S2 S 2 分别代表两种类型任务。不妨假设这两个源信号是相互线性独立的; SM S M 代表两种类型任务下所共同拥有的源信号,假设 S1 S 1 是由 m1 m 1 个源所构成的, S2 S 2 是由 m2 m 2 个源所构成。则 C1 C 1 和 C2 C 2 便是由 S1 S 1 和 S2 S 2 相关的 m1 m 1 和 m2 m 2 个共同空间模式组成的,由于每个空间模式都是一个 N∗1 N ∗ 1 维的向量,现在用这个向量来表示单个的源信号所引起的信号在 N N 个导联上的分布权重。CM C M 表示的是与 SM S M 相应的共有的空间模式。 CSP C S P 算法的目标就是要设计空间滤波器 F1 F 1 和 F2 F 2 得到空间因子 W W 。
X1 X 1 和 X2 X 2 归一化后的协方差矩阵 R1 R 1 和 R2 R 2 分别为:
(2)式中: XT X T 表示 X X 矩阵的转置,trace(X) t r a c e ( X ) 表示矩阵对角线上元素的和。然后求混合空间协方差矩阵 R R :
(3)式中: Ri¯(i=1,2) R i ¯ ( i = 1 , 2 ) 分别为任务1,2实验的平均协方差矩阵。
对混合空间协方差矩阵 R R 按式进行特征值分解:
(4)式中: U U 是矩阵λ λ 的特征向量矩阵, λ λ 是对应的特征值构成的对角阵。将特征值进行降序排列,白化值矩阵为:
对 R1 R 1 和 R2 R 2 进行如下变换:
然后对 S1 S 1 和 S2 S 2 做主分量分解,得到:
把 λ1 λ 1 中的特征值按照降序排列,则 λ2 λ 2 中对应的特征值按升序排列,根据这点可以推断出 λ1 λ 1 和 λ2 λ 2 具有下面的形式:
白化EEG到与 λ1 λ 1 和 λ2 λ 2 中的最大特征值对应的特征向量的变换对于分离两个信号矩阵中的方差是最佳的。投影矩阵 W W 是所对应的空间滤波器为:
将训练集的运动想象矩阵 XL、XR X L 、 X R 经过构造的相应滤波器 W W 滤波可得特征ZL、ZR Z L 、 Z R 为:
构造空间滤波器:learnCSP.m
function CSPMatrix = learnCSP(EEGSignals,classLabels)
%
%Input:
%EEGSignals: the training EEG signals, composed of 2 classes. These signals
%are a structure such that:
% EEGSignals.x: the EEG signals as a [Ns * Nc * Nt] Matrix where
% Ns: number of EEG samples per trial
% Nc: number of channels (EEG electrodes)
% nT: number of trials
% EEGSignals.y: a [1 * Nt] vector containing the class labels for each trial
% EEGSignals.s: the sampling frequency (in Hz)
%
%Output:
%CSPMatrix: the learnt CSP filters (a [Nc*Nc] matrix with the filters as rows)
%
%See also: extractCSPFeatures
%check and initializations
nbChannels = size(EEGSignals.x,2); % 通道
nbTrials = size(EEGSignals.x,3); % 实验次数
nbClasses = length(classLabels); % 类别
if nbClasses ~= 2
disp('ERROR! CSP can only be used for two classes');
return;
end
covMatrices = cell(nbClasses,1); %the covariance matrices for each class
%% Computing the normalized covariance matrices for each trial
%% 为每个试验计算标准化的协方差矩阵。
trialCov = zeros(nbChannels,nbChannels,nbTrials);
for t=1:nbTrials
E = EEGSignals.x(:,:,t)'; %note the transpose
EE = E * E';
trialCov(:,:,t) = EE ./ trace(EE);
end
clear E;
clear EE;
%computing the covariance matrix for each class
for c=1:nbClasses
%EEGSignals.y==classLabels(c) returns the indeces corresponding to the class labels
covMatrices{c} = mean(trialCov(:,:,EEGSignals.y == classLabels(c)),3);
end
%the total covariance matrix
covTotal = covMatrices{1} + covMatrices{2};
%whitening transform of total covariance matrix
%caution: the eigenvalues are initially in increasing order注意:特征值最初是递增的
[Ut Dt] = eig(covTotal);
eigenvalues = diag(Dt);
[eigenvalues egIndex] = sort(eigenvalues, 'descend');
Ut = Ut(:,egIndex);
P = diag(sqrt(1./eigenvalues)) * Ut';
%transforming covariance matrix of first class using P
%用P变换第一类协方差矩阵
transformedCov1 = P * covMatrices{1} * P';
%EVD of the transformed covariance matrix 变换协方差矩阵的EVD
[U1 D1] = eig(transformedCov1);
eigenvalues = diag(D1);
[eigenvalues egIndex] = sort(eigenvalues, 'descend');
U1 = U1(:, egIndex);
CSPMatrix = U1' * P;
特征提取:extractCSP.m
function features = extractCSP(EEGSignals, CSPMatrix, nbFilterPairs)
%
%extract features from an EEG data set using the Common Spatial Patterns (CSP) algorithm
%
%Input:
%EEGSignals: the EEGSignals from which extracting the CSP features. These signals
%are a structure such that:
% EEGSignals.x: the EEG signals as a [Ns * Nc * Nt] Matrix where
% Ns: number of EEG samples per trial
% Nc: number of channels (EEG electrodes)
% nT: number of trials
% EEGSignals.y: a [1 * Nt] vector containing the class labels for each trial
% EEGSignals.s: the sampling frequency (in Hz)
%CSPMatrix: the CSP projection matrix, learnt previously (see function learnCSP)
%nbFilterPairs: number of pairs of CSP filters to be used. The number of
% features extracted will be twice the value of this parameter. The
% filters selected are the one corresponding to the lowest and highest
% eigenvalues
%
%Output:
%features: the features extracted from this EEG data set
% as a [Nt * (nbFilterPairs*2 + 1)] matrix, with the class labels as the
% last column
%
%initializations
nbTrials = size(EEGSignals.x,3);
features = zeros(nbTrials, 2*nbFilterPairs+1);
Filter = CSPMatrix([1:nbFilterPairs (end-nbFilterPairs+1):end],:);
%extracting the CSP features from each trial
for t=1:nbTrials
%projecting the data onto the CSP filters
projectedTrial = Filter * EEGSignals.x(:,:,t)';
%generating the features as the log variance of the projectedsignals
variances = var(projectedTrial,0,2);
for f=1:length(variances)
features(t,f) = log(1+variances(f));
end
end