我正在建立一个微笑检测系统,我需要绘制微笑的概率(来自视频输入),如this video右侧的图表。
我怎样才能在MATLAB中做到这一点?
我目前正在使用OpenCV& amp;显示视频帧。 IntraFace默认代码,如下所示:
cf = 0; % Current Frame.
% create a figure to draw upon
S.fh = figure('units','pixels',...
'position',[100 150 frame_w frame_h],...
'menubar','none',...
'name','Smile Detector',...
'numbertitle','off',...
'resize','off',...
'renderer','painters');
% create axes
S.ax = axes('units','pixels',...
'position',[1 1 frame_w frame_h],...
'drawmode','fast');
set(S.fh,'KeyPressFcn',@pb_kpf);
S.im_h = imshow(zeros(frame_h,frame_w,3,'uint8'));
hold on;
S.frame_h = text(50,frame_h-50,['Frame ' int2str(cf)] , 'fontsize', 15, 'Color' , 'c');
while true && ~stop_pressed
tic;
im = cap.read;
cf = cf + 1;
if isempty(im),
warning('EOF');
break ;
end
set(S.im_h,'cdata',im); % update frame
set(S.frame_h , 'string' ,['Frame ' int2str(cf)]);
do_something_with_frame(im);
if isempty(output.pred) % if lost/no face, delete all drawings
if drawed, delete_handlers(); end
else % face found
update_GUI();
end
drawnow;
end
close;
end
我想在视频中添加实时/移动图表。图形将显示0到1之间的单个值(概率)。它应该随每个新帧更新,因此绘图应该" flow"视频流动。
我尝试在代码中创建一个与S
类似的新数字。但我不能插入它。我也可以在同一个图中添加实时图形(S.fh
),最好是在场景下。
答案 0 :(得分:1)
使用linkdata和refreshdata会在您有新数据时刷新图表。
%some pretend data
pX1 = rand;
pX2 = 1-pX1;
p = [pX1,pX2];
bar(p)
%link the data to the plot
linkdata on
for i=1:100
pX1 = rand;
pX2 = 1-pX1;
p = [pX1,pX2];
%refresh the linked data and draw
refreshdata
drawnow
end
http://www.mathworks.co.uk/help/matlab/ref/linkdata.html
希望它有所帮助...