如何在insertObjectAnnotation方法中更改边界框的颜色

时间:2016-05-24 06:39:18

标签: matlab

frame = insertObjectAnnotation(frame,'rectangle',bboxes,labels,'TextBoxOpacity',0.9,'FontSize',18);

下图显示了MATLAB代码的输出。边界框为黄色。是否可以改变这种颜色,以及如何改变?

enter image description here

1 个答案:

答案 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;,'黑'和'白'