用代码画出2d bounding box

目标

bounding box的格式为[xmin ymin w h], 其中xmin对应图像的水平方向,即列。

要求效果如下:


(1)使用matlab代码
rgbImage=imread('car.png');
imshow(rgbImage)
hold on
rectangle('Position', [30, 30, 72, 42],...
	'EdgeColor','r', 'LineWidth', 3)

函数rectangle的语法为:

rectangle('Position',pos)

rectangle('Position',pos,'Curvature',cur)

解释:

rectangle('Position',pos) creates a rectangle in 2-D coordinates. Specify pos as a four-element vector of the form [x y w h] in data units. The x and y elements determine the location and the w and h elements determine the size. The function plots into the current axes without clearing existing content from the axes.


(2)使用Python版的OpenCV
import cv2
image = cv2.imread('car.png')
cv2.rectangle(image, (30,30), (30+72,30+42), (0,0,255))
cv2.imshow('original',image)
cv2.waitKey(0)

函数cv2.rectangle的语法为:

cv2.rectangle(img, (x,y), (x+w,y+h), (B,G,R), Thickness)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值