我正在尝试决定,对于单个帧,是否要将其添加到帧中..(实现背景减法)..
我该如何快速完成?(我是通过循环完成的,它的工作速度很慢......)
这就是我所拥有的:(seq 是输入,diff 是我正在测试的图像,F 是新图像)
for y = 1:height
for x = 1:width
res = 0;
for c = 1:channels
if diff(y,x,c) > thresh
res = 1;
end
end
if res == 1
F(y,x, :) = seq(y,x,:);
else
F(y,x, :) = 0;
end
end
end
谢谢 !!