SSD锚点生成器中的步幅和比率是什么意思?

问题描述 投票:0回答:0

我在 mmDetection 包中使用 SSD 对象检测模型。 我认为锚点生成器为每个特征单元格创建了 6 个锚点。 basesize_ratio_range, strides, ratios 是什么意思?

bbox_head=dict(
        type='SSDHead',
        in_channels=(512, 1024, 512, 256, 256, 256),
        num_classes=10,
        anchor_generator=dict(
            type='SSDAnchorGenerator',
            scale_major=False,
            input_size=300,
            basesize_ratio_range=(0.15, 0.9),
            strides=[8, 16, 32, 64, 100, 300],
            ratios=[[2], [2, 3], [2, 3], [2, 3], [2], [2]]),
        bbox_coder=dict(
            type='DeltaXYWHBBoxCoder',
            target_means=[0.0, 0.0, 0.0, 0.0],
            target_stds=[0.1, 0.1, 0.2, 0.2])),

我搜索了SSD的源代码和架构,但没有找到。

object anchor detection solid-state-drive
© www.soinside.com 2019 - 2024. All rights reserved.