0
我正在Simulink上開發我的算法。 我有一個尺寸640x360的視頻流。我試圖從每一幀中提取感興趣區域(ROI)。然而,我的視頻變成當我使用下面的代碼灰度:我現在用的ROI提取在視頻中提取RoI
MATLAB功能塊:
function y = fcn(u)
%some more code
width = 639;
height = 210;
top = 150;
left = 1;
y = u(top:top+height, left:left+width);