A matlab compatibility fix.
This commit is contained in:
parent
6973296f01
commit
6e8de1706c
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ function [ labels, valid_ids, filenames ] = extract_FERA2011_labels( FERA2011_d
|
||||||
[~, filename,~] = fileparts(file);
|
[~, filename,~] = fileparts(file);
|
||||||
filenames{file_id} = filename;
|
filenames{file_id} = filename;
|
||||||
|
|
||||||
data = csvread(file); %import annotations for one video file
|
data = dlmread(file); %import annotations for one video file
|
||||||
|
|
||||||
speech = data(:,end);
|
speech = data(:,end);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue