博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
deeplearning.ai - 目标检测 Detection algorithms
阅读量:4091 次
发布时间:2019-05-25

本文共 1332 字,大约阅读时间需要 4 分钟。

吴恩达 Andrew Ng

目标定位 Object Localization

  • Classification with localization 分类并且确定目标位置(一个物体)
    这里写图片描述
  • Detection 定位(多个物体)
  • target label y
    这里写图片描述

特征点检测 Landmark Detection

  • 设置特征点坐标值作为输出
  • 所有标签在图片中保持一致 labels are consistent across different images

目标检测 Object Detection

  • Sliding windows detection 滑动窗口检测
    • 固定步幅,滑动窗口,遍历图像的每个区域
    • 裁剪后的图像输入卷积网络,对每个位置进行分类
    • 卷积网络进行单个分类的计算成本很高
  • granularity 粒度,stride 步幅

Convolutional Implementation of Sliding Windows

  • Turing FC layer into convolutional layers
    这里写图片描述
  • Convolution implementation of sliding windows

    这里写图片描述

Bounding Box Predictions

  • YOLO algorithm (You Only Look Once), more accuracy bounding box
  • assign an object to grid cell which contains the mid point of the object

交并比 Intersection Over Union

  • 衡量定位精确度的一种方式
  • 交集除以并集
  • a measure of the overlap between two bounding boxes

非极大值抑制 Non-max Suppression

  • output maximal probabilities classifications
  • suppress closed and non-maximal ones
  • 把其他与最大概率的边界框有高交并比的边界框抑制掉
  • 这里写图片描述

Anchor Boxes

  • 一个格子中检测两个物体
  • Each object in training image is assigned to grid cell that contains object’s midpoint and anchor box for the grid cell with highest IoU
  • 两个物体的中心的位于同一个格子概率很小
  • 人工选择 Anchor Box 的形状来配合需要检测的物体
  • 通过 k-means algorithm 聚类,选择合适的形状

YOLO Algorithm

Training

这里写图片描述

Making predictions

这里写图片描述

Output the non-max supressed outputs

这里写图片描述

候选区域 Region Proposals

  • Regions with Convolutional Neural Network
  • 选出一些格子,在其上运行卷积网络
  • segmentation algorithm 分割算法,选出色块
你可能感兴趣的文章
《Algorithms 4th Edition》读书笔记——3.1 符号表(Elementary Symbol Tables)-Ⅲ
查看>>
【神胎再造】第一篇记录
查看>>
SQL Server索引--(包含列和覆盖索引)
查看>>
贪心(哈夫曼树):HDU 5884 sort
查看>>
时间戳 时区 java mysql
查看>>
MapCompose()
查看>>
.NET 声明数组
查看>>
Oracle行转列、列转行的Sql语句总结
查看>>
Java android DES+Base64加密解密
查看>>
java中的object类
查看>>
Luogu5327【ZJOI2019】语言【树上差分,线段树合并】
查看>>
TopCoder[SRM587 DIV 1]:TriangleXor(550)
查看>>
luoguP4336 [SHOI2016]黑暗前的幻想乡 容斥原理 + 矩阵树定理
查看>>
Entity Framework技巧系列之六 - Tip 20 – 25
查看>>
jQuery源码学习第三天--jQuery的静态函数
查看>>
Map的知识点梳理(不包含collections工具类)
查看>>
国际化
查看>>
java中字符串的比较
查看>>
《浪潮之巅》读书笔记——第2章 IBM
查看>>
浙大计算机研究生复试上机考试-2010年 最短路径问题
查看>>