frame = insertObjectAnnotation(frame,'rectangle',bboxes,labels,'TextBoxOpacity',0.9,'FontSize',18);
下图显示了MATLAB代码的输出。边界框为黄色。是否可以改变这种颜色,以及如何改变?
答案 0 :(得分:0)
我没有Vision System Toolbox,但根据documentation,您可以插入named pair,如下所示:
'Color', 'white'
尝试以下方法:
frame = insertObjectAnnotation(frame,'rectangle',bboxes,labels,'TextBoxOpacity',0.9,'FontSize',18,'Color', 'white');
支持的颜色字符串包括:' blue',' green',' cyan',' red',' magenta&# 39;,'黑'和'白'