其他分享
首页 > 其他分享> > matlab输出图像并在图像上框出物体

matlab输出图像并在图像上框出物体

作者:互联网

一张 M*N 大小的图片,在图像上画出一个width*height并且左上角坐标为(x,y)的矩形框,可用如下代码:

res = insertShape(img,'Rectangle',[x y width height]);
%在图像img上画一个width*height的矩形框,矩形框左上角坐标为(x,y)

举个栗子,把下图中的小狗框出来:

图片像素为352*240,小狗左上角坐标为(36,81)
用一个长120宽80的矩形框把狗狗框出来 

 

img = imread('img.jpg');
res = insertShape(img,'Rectangle',[36 81 120 80]);
imshow(res)

运行结果为:

标签:img,res,框出,矩形框,height,width,matlab,图像,左上角
来源: https://blog.csdn.net/qq_36880027/article/details/102748684