2016-06-03 13:33:04 +00:00
|
|
|
function [ labels, valid_ids, filenames ] = extract_FERA2011_labels( FERA2011_dir, recs, aus )
|
|
|
|
%EXTRACT_SEMAINE_LABELS Summary of this function goes here
|
|
|
|
% Detailed explanation goes here
|
|
|
|
|
|
|
|
num_files = numel(recs);
|
|
|
|
|
|
|
|
% speech invalidates lower face AUs
|
|
|
|
labels = cell(num_files, 1);
|
|
|
|
valid_ids = cell(num_files, 1);
|
|
|
|
filenames = cell(num_files, 1);
|
|
|
|
|
|
|
|
file_id = 1;
|
|
|
|
|
|
|
|
for i=1:numel(recs)
|
|
|
|
|
|
|
|
file = [FERA2011_dir, '/', recs{i}, '/', recs{i}, '-au.dat'];
|
|
|
|
|
|
|
|
[~, filename,~] = fileparts(file);
|
|
|
|
filenames{file_id} = filename;
|
|
|
|
|
2018-02-27 21:09:09 +00:00
|
|
|
delimiter = {' '};
|
|
|
|
formatSpec = '%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%f%[^\n\r]';
|
|
|
|
|
|
|
|
%% Open the text file.
|
|
|
|
fileID = fopen(file,'r');
|
|
|
|
|
|
|
|
%% Read columns of data according to the format.
|
|
|
|
data = textscan(fileID, formatSpec, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'TextType', 'string', 'ReturnOnError', false);
|
|
|
|
data = [data{1:end-1}];
|
|
|
|
|
|
|
|
%% Close the text file.
|
|
|
|
fclose(fileID);
|
|
|
|
|
|
|
|
%data = dlmread(file, ' '); %import annotations for one video file
|
2016-06-03 13:33:04 +00:00
|
|
|
|
|
|
|
speech = data(:,end);
|
|
|
|
|
|
|
|
labels{file_id} = data(:, aus);
|
|
|
|
|
|
|
|
% Finding the invalid regions
|
|
|
|
if(aus(1) >= 10)
|
|
|
|
valid = speech == 0;
|
|
|
|
else
|
|
|
|
valid = true(size(speech,1), 1);
|
|
|
|
end
|
|
|
|
|
|
|
|
% all indices in SEMAINE are valid
|
|
|
|
valid_ids{file_id} = valid;
|
|
|
|
|
|
|
|
file_id = file_id + 1;
|
|
|
|
end
|
|
|
|
|
|
|
|
labels = labels(1:file_id-1);
|
|
|
|
valid_ids = valid_ids(1:file_id-1);
|
|
|
|
filenames = filenames(1:file_id-1);
|
|
|
|
|
|
|
|
end
|
|
|
|
|