DOTA格式的8个坐标值转换为角度倾斜矩形框 (cx,cy,w,h,ang)

举报
AI浩 发表于 2021/12/22 23:32:01 2021/12/22
【摘要】 def polygonToRotRectangle_batch(bbox, with_module=True):    """    :param bbox: The polygon stored in format [x1, y1, x2, y2, x3, y3, x4, y4]  &...

  
  1. def polygonToRotRectangle_batch(bbox, with_module=True):
  2.     """
  3.     :param bbox: The polygon stored in format [x1, y1, x2, y2, x3, y3, x4, y4]
  4.             shape [num_boxes, 8]
  5.     :return: Rotated Rectangle in format [cx, cy, w, h, theta]
  6.             shape [num_rot_recs, 5]
  7.     """
  8.     # print('bbox: ', bbox)
  9.     bbox = np.array(bbox,dtype=np.float32)
  10.     bbox = np.reshape(bbox,newshape=(-1, 2, 4),order='F')
  11.     # angle = math.atan2(-(bbox[0,1]-bbox[0,0]),bbox[1,1]-bbox[1,0])
  12.     # print('bbox: ', bbox)
  13.     angle = np.arctan2(-(bbox[:, 0,1]-bbox[:, 0,0]),bbox[:, 1,1]-bbox[:, 1,0])
  14.     # angle = np.arctan2(-(bbox[:, 0,1]-bbox[:, 0,0]),bbox[:, 1,1]-bbox[:, 1,0])
  15.     # center = [[0],[0]] ## shape [2, 1]
  16.     # print('angle: ', angle)
  17.     center = np.zeros((bbox.shape[0], 2, 1))
  18.     for i in range(4):
  19.         center[:, 0, 0] += bbox[:, 0,i]
  20.         center[:, 1, 0] += bbox[:, 1,i]
  21.  
  22.     center = np.array(center,dtype=np.float32)/4.0
  23.  
  24.     # R = np.array([[math.cos(angle), -math.sin(angle)], [math.sin(angle), math.cos(angle)]], dtype=np.float32)
  25.     R = np.array([[np.cos(angle), -np.sin(angle)], [np.sin(angle), np.cos(angle)]], dtype=np.float32)
  26.  
  27.     normalized = np.matmul(R.transpose((2, 1, 0)),bbox-center)
  28.  
  29.  
  30.     xmin = np.min(normalized[:, 0, :], axis=1)
  31.     # print('diff: ', (xmin - normalized[:, 0, 3]))
  32.     # assert sum((abs(xmin - normalized[:, 0, 3])) > eps) == 0
  33.     xmax = np.max(normalized[:, 0, :], axis=1)
  34.     # assert sum(abs(xmax - normalized[:, 0, 1]) > eps) == 0
  35.     # print('diff2: ', xmax - normalized[:, 0, 1])
  36.     ymin = np.min(normalized[:, 1, :], axis=1)
  37.     # assert sum(abs(ymin - normalized[:, 1, 3]) > eps) == 0
  38.     # print('diff3: ', ymin - normalized[:, 1, 3])
  39.     ymax = np.max(normalized[:, 1, :], axis=1)
  40.     # assert sum(abs(ymax - normalized[:, 1, 1]) > eps) == 0
  41.     # print('diff4: ', ymax - normalized[:, 1, 1])
  42.  
  43.     w = xmax - xmin + 1
  44.     h = ymax - ymin + 1
  45.  
  46.     w = w[:, np.newaxis]
  47.     h = h[:, np.newaxis]
  48.     # TODO: check it
  49.     if with_module:
  50.         angle = angle[:, np.newaxis] % ( 2 * np.pi)
  51.     else:
  52.         angle = angle[:, np.newaxis]
  53.     dboxes = np.concatenate((center[:, 0].astype(np.float), center[:, 1].astype(np.float), w, h, angle), axis=1)
  54.     return dboxes


 

文章来源: wanghao.blog.csdn.net,作者:AI浩,版权归原作者所有,如需转载,请联系作者。

原文链接:wanghao.blog.csdn.net/article/details/117219250

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。