-
Notifications
You must be signed in to change notification settings - Fork 3
/
NaiveSemanticFrameSelector.m
executable file
·49 lines (43 loc) · 2.19 KB
/
NaiveSemanticFrameSelector.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% This file is part of SemanticFastForward_EPIC@ECCVW.
%
% SemanticFastForward_EPIC@ECCVW is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% SemanticFastForward_EPIC@ECCVW is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with SemanticFastForward_EPIC@ECCVW. If not, see <http://www.gnu.org/licenses/>.
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
classdef NaiveSemanticFrameSelector < CandidateFrameSelector
%NaiveFrameSelector selects output frames based on which frames have
%more faces
properties
SemanticData; %Detected semantic data
end
methods
function obj = NaiveSemanticFrameSelector (cfg, SemanticData)
obj = obj@CandidateFrameSelector (cfg);
obj.SemanticData = SemanticData;
end
function frame_indices = selectFrames (obj, ~, ~, ~)
number_of_frames = obj.cfg.get('endInd')-obj.cfg.get('startInd')+1;
%Sort detected semantics in descend order
Semantic_Value = cell(obj.cfg.get('endInd')-obj.cfg.get('startInd')+1, 1);
obj.SemanticData = obj.SemanticData(obj.cfg.get('startInd'):obj.cfg.get('endInd'));
Semantic_Value(:) = {0};%Initializes the cell
for i=1:size(obj.SemanticData,1)
Semantic_Value{i} = FrameSemanticValue(obj.SemanticData{i});
end
[dummy, Index] = sort(cellfun(@double, Semantic_Value(:)), 'descend');
%Select the frames which contain the most faces
frame_indices = sort(Index(1:round(number_of_frames/obj.cfg.get('FastForwardSkipRatio'))));
end
end
end