AI实战营:目标检测与MMDetection

目录

目标检测的基本范式

什么是目标检测 

目标检测 vs 图像分类

目标检测 in 人脸识别 

目标检测 in 智慧城市

​编辑​编辑

目标检测 in 自动驾驶

目标检测 in 下游视觉任务

目标检测技术的演进

基础知识

框、边界框(Bounding Box)

交并比 Intersection Over Union

目标检测的基本思路(从滑窗到密集预测)

检测问题的难点 

滑窗 Sliding Widow

使用卷积实现密集预测

单阶段 & 无锚框检测器  选讲​编辑         

无锚框目标检测算法 Anchor-free Detectors


  • 目标检测的基本范式

  • 什么是目标检测 

    • AI实战营:目标检测与MMDetection_第1张图片
  • 目标检测 vs 图像分类

    • AI实战营:目标检测与MMDetection_第2张图片

  • 目标检测 in 人脸识别 

    • AI实战营:目标检测与MMDetection_第3张图片
  • 目标检测 in 智慧城市

AI实战营:目标检测与MMDetection_第4张图片

  • 目标检测 in 自动驾驶

  • AI实战营:目标检测与MMDetection_第5张图片
  • 目标检测 in 下游视觉任务

    • AI实战营:目标检测与MMDetection_第6张图片
  • 目标检测技术的演进

    • AI实战营:目标检测与MMDetection_第7张图片

    • AI实战营:目标检测与MMDetection_第8张图片

    • 基础知识

      • 框、边界框(Bounding Box)

         

        • AI实战营:目标检测与MMDetection_第9张图片
      • 交并比 Intersection Over Union

        • AI实战营:目标检测与MMDetection_第10张图片
    • 目标检测的基本思路(从滑窗到密集预测)

      • 检测问题的难点 

        • AI实战营:目标检测与MMDetection_第11张图片
      • 滑窗 Sliding Widow

        • AI实战营:目标检测与MMDetection_第12张图片
        • AI实战营:目标检测与MMDetection_第13张图片

      • 滑窗的效率问题
        • AI实战营:目标检测与MMDetection_第14张图片
        • 改进思路2:分析滑窗中的重复计算

          • AI实战营:目标检测与MMDetection_第15张图片
        • 消除滑窗中的重复计算
          • AI实战营:目标检测与MMDetection_第16张图片
        • 感受野(Receptive Field)

          • AI实战营:目标检测与MMDetection_第17张图片

        • 感受野的中心和步长

          • AI实战营:目标检测与MMDetection_第18张图片

        • 有效感受野(Effective RF)
          • AI实战营:目标检测与MMDetection_第19张图片
        • 在特征图上进行密集预测
          • AI实战营:目标检测与MMDetection_第20张图片
          • AI实战营:目标检测与MMDetection_第21张图片

        • 边界框回归 Bounding Box Regression
          • AI实战营:目标检测与MMDetection_第22张图片
        • 基于锚框 vs 无锚框
          • AI实战营:目标检测与MMDetection_第23张图片
        • 非极大值抑制 Non-Maximum Suppression
        • 置信度 Confidence Score

          • AI实战营:目标检测与MMDetection_第24张图片

    • 使用卷积实现密集预测

      • 使用密集预测模型进行推理
        • 基本流程:
          • 用模型做密集预测,得到预测图,每个位置包含类别概率、边界框回归的预测结果
          • 保留预测类别不是背景的“框”
          • 基于“框”中心,和边界框回归结果,进行边界框解码
          • 后处理:非极大值抑制(Non-Maximum Suppression)
      • 如何训练
        • AI实战营:目标检测与MMDetection_第25张图片
      • 密集预测模型的训练
        • AI实战营:目标检测与MMDetection_第26张图片
      • 匹配的基本思路

        • AI实战营:目标检测与MMDetection_第27张图片

      • 密集预测的基本范式

      • 密集预测范式的改进:多尺度预测
      • 如何处理尺度问题:
        • AI实战营:目标检测与MMDetection_第28张图片
  • 锚框
    • 基于锚框Anchor
      • AI实战营:目标检测与MMDetection_第29张图片
    • 图像金字塔 Image Pyramid
      • AI实战营:目标检测与MMDetection_第30张图片
    • 基于层次化特征

       

      • AI实战营:目标检测与MMDetection_第31张图片
    • 特征金字塔网络 Feature Pyramid Network 2016
    • 多尺度的密集预测
      • AI实战营:目标检测与MMDetection_第32张图片
  • 单阶段 & 无锚框检测器  选讲AI实战营:目标检测与MMDetection_第33张图片         

  • RPN(Region Proposal Network 2015)
  • AI实战营:目标检测与MMDetection_第34张图片
  • RPN的主干网络

    • AI实战营:目标检测与MMDetection_第35张图片

    •  代码
    • AI实战营:目标检测与MMDetection_第36张图片

  • 基于IoU的匹配

    • AI实战营:目标检测与MMDetection_第37张图片

  • YOLO:You Only Look Once 2015
    • AI实战营:目标检测与MMDetection_第38张图片
    • YOLO的匹配与框编码

      • AI实战营:目标检测与MMDetection_第39张图片

    • YOLO的损失函数

      • AI实战营:目标检测与MMDetection_第40张图片

    • YOLO的优点和缺点

      • AI实战营:目标检测与MMDetection_第41张图片

         

  • SSD:Single Shot MultiBox Detector 2016

    • AI实战营:目标检测与MMDetection_第42张图片
    • SSD的匹配规则
      • AI实战营:目标检测与MMDetection_第43张图片
  • RetinaNet 2017
    • AI实战营:目标检测与MMDetection_第44张图片
    • AI实战营:目标检测与MMDetection_第45张图片

  • 单阶段算法面临的正负样本不均衡问题

    • AI实战营:目标检测与MMDetection_第46张图片
    • ​​​​​​​​​​​​​​AI实战营:目标检测与MMDetection_第47张图片
    • ​​​​​​​​​​​​​​​​​​​​​AI实战营:目标检测与MMDetection_第48张图片
    • AI实战营:目标检测与MMDetection_第49张图片
  • Focal Loss 
    • AI实战营:目标检测与MMDetection_第50张图片
  • YOLO v3 2018
  • AI实战营:目标检测与MMDetection_第51张图片
  • AI实战营:目标检测与MMDetection_第52张图片
  • YOLO v5 2020
  • AI实战营:目标检测与MMDetection_第53张图片
  • 无锚框目标检测算法 Anchor-free Detectors

  • 锚框 vs 无锚框

     

    • AI实战营:目标检测与MMDetection_第54张图片
    • AI实战营:目标检测与MMDetection_第55张图片
  • FCOS-Fully Convolutional One-Stage 2019

    • AI实战营:目标检测与MMDetection_第56张图片

       

    • FCOS的预测目标 & 匹配规则

    • AI实战营:目标检测与MMDetection_第57张图片

    • FCOS的多尺度匹配

    • AI实战营:目标检测与MMDetection_第58张图片

    • 中心度Center-ness

    • AI实战营:目标检测与MMDetection_第59张图片

    • FCOS的损失函数

    • AI实战营:目标检测与MMDetection_第60张图片

    • CenterNet2019

    • AI实战营:目标检测与MMDetection_第61张图片

    • YOLO X 2021

    • AI实战营:目标检测与MMDetection_第62张图片

       AI实战营:目标检测与MMDetection_第63张图片

你可能感兴趣的:(人工智能,目标检测,深度学习)