• 代码中出现的shortcut是指conv block中的捷径大小
shortcut = KL.Conv2D(nb_filter3, (1, 1), strides=strides,
                         name=conv_name_base + '1', use_bias=use_bias)(input_tensor)
shortcut = BatchNorm(axis=3, name=bn_name_base + '1')(shortcut)
  • conv block的结构如图:(2*卷积+BN+**——>卷积+BN)
    mask rcnn学习记录
  • resnet graph层的结构:

mask rcnn学习记录

  • proposal layer的结构层:

给定以P为中心的候选框经过平移放缩转换成预测的以G中心的预测框,预测框经SVR线性回归变成标注框。mask rcnn学习记录
代码示例如下:

center_y += deltas[:, 0] * height
  • clip_boxes_graph的结构图

主要是以对角线上的两个点为基准,求取候选框和预测框的交叉部分
mask rcnn学习记录
ROIAligner的图结构:logx/log2
mask rcnn学习记录

相关文章:

  • 2021-08-25
  • 2021-08-15
  • 2022-12-23
  • 2021-04-03
  • 2021-11-07
  • 2021-07-23
猜你喜欢
  • 2021-10-03
  • 2022-01-09
  • 2021-04-08
  • 2021-12-03
  • 2021-09-09
  • 2021-12-14
相关资源
相似解决方案