当前位置: 首页>>代码示例>>Python>>正文


Python mmcv.bbox_flip方法代码示例

本文整理汇总了Python中mmcv.bbox_flip方法的典型用法代码示例。如果您正苦于以下问题:Python mmcv.bbox_flip方法的具体用法?Python mmcv.bbox_flip怎么用?Python mmcv.bbox_flip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mmcv的用法示例。


在下文中一共展示了mmcv.bbox_flip方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: bbox_flip

# 需要导入模块: import mmcv [as 别名]
# 或者: from mmcv import bbox_flip [as 别名]
def bbox_flip(bboxes, img_shape):
    """Flip bboxes horizontally.

    Args:
        bboxes(Tensor or ndarray): Shape (..., 4*k)
        img_shape(tuple): Image shape.

    Returns:
        Same type as `bboxes`: Flipped bboxes.
    """
    if isinstance(bboxes, torch.Tensor):
        assert bboxes.shape[-1] % 4 == 0
        flipped = bboxes.clone()
        flipped[:, 0::4] = img_shape[1] - bboxes[:, 2::4] - 1
        flipped[:, 2::4] = img_shape[1] - bboxes[:, 0::4] - 1
        return flipped
    elif isinstance(bboxes, np.ndarray):
        return mmcv.bbox_flip(bboxes, img_shape) 
开发者ID:dingjiansw101,项目名称:AerialDetection,代码行数:20,代码来源:transforms.py

示例2: bbox_mapping

# 需要导入模块: import mmcv [as 别名]
# 或者: from mmcv import bbox_flip [as 别名]
def bbox_mapping(bboxes, img_shape, scale_factor, flip):
    """Map bboxes from the original image scale to testing scale"""
    new_bboxes = bboxes * scale_factor
    if flip:
        new_bboxes = bbox_flip(new_bboxes, img_shape)
    return new_bboxes 
开发者ID:dingjiansw101,项目名称:AerialDetection,代码行数:8,代码来源:transforms.py

示例3: bbox_mapping_back

# 需要导入模块: import mmcv [as 别名]
# 或者: from mmcv import bbox_flip [as 别名]
def bbox_mapping_back(bboxes, img_shape, scale_factor, flip):
    """Map bboxes from testing scale to original image scale"""
    new_bboxes = bbox_flip(bboxes, img_shape) if flip else bboxes
    new_bboxes = new_bboxes / scale_factor
    return new_bboxes 
开发者ID:dingjiansw101,项目名称:AerialDetection,代码行数:7,代码来源:transforms.py


注:本文中的mmcv.bbox_flip方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。