當前位置: 首頁>>代碼示例>>Python>>正文


Python core.AnchorGenerator方法代碼示例

本文整理匯總了Python中mmdet.core.AnchorGenerator方法的典型用法代碼示例。如果您正苦於以下問題:Python core.AnchorGenerator方法的具體用法?Python core.AnchorGenerator怎麽用?Python core.AnchorGenerator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mmdet.core的用法示例。


在下文中一共展示了core.AnchorGenerator方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_strides

# 需要導入模塊: from mmdet import core [as 別名]
# 或者: from mmdet.core import AnchorGenerator [as 別名]
def test_strides():
    from mmdet.core import AnchorGenerator
    # Square strides
    self = AnchorGenerator([10], [1.], [1.], [10])
    anchors = self.grid_anchors([(2, 2)], device='cpu')

    expected_anchors = torch.tensor([[-5., -5., 5., 5.], [5., -5., 15., 5.],
                                     [-5., 5., 5., 15.], [5., 5., 15., 15.]])

    assert torch.equal(anchors[0], expected_anchors)

    # Different strides in x and y direction
    self = AnchorGenerator([(10, 20)], [1.], [1.], [10])
    anchors = self.grid_anchors([(2, 2)], device='cpu')

    expected_anchors = torch.tensor([[-5., -5., 5., 5.], [5., -5., 15., 5.],
                                     [-5., 15., 5., 25.], [5., 15., 15., 25.]])

    assert torch.equal(anchors[0], expected_anchors) 
開發者ID:open-mmlab,項目名稱:mmdetection,代碼行數:21,代碼來源:test_anchor.py

示例2: test_standard_anchor_generator

# 需要導入模塊: from mmdet import core [as 別名]
# 或者: from mmdet.core import AnchorGenerator [as 別名]
def test_standard_anchor_generator():
    from mmdet.core.anchor import build_anchor_generator
    anchor_generator_cfg = dict(
        type='AnchorGenerator',
        scales=[8],
        ratios=[0.5, 1.0, 2.0],
        strides=[4, 8])

    anchor_generator = build_anchor_generator(anchor_generator_cfg)
    assert anchor_generator is not None 
開發者ID:open-mmlab,項目名稱:mmdetection,代碼行數:12,代碼來源:test_anchor.py


注:本文中的mmdet.core.AnchorGenerator方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。