随笔分类 - Object Detection
摘要:IOU是指两个bounding box的重合程度。 其中矩形框A和B的IOU=A∩B/A∪B,实际运算是对应的面积比较。
阅读全文
摘要:1.yolo:You Only Look Once: Unified, Real-Time Object Detection 论文地址:https://arxiv.org/pdf/1506.02640.pdf 处理流程:输入图片需要缩放到448*448,最后生成一个维度为7*7*30的tensor。
阅读全文
摘要:ROI pooling是将不定长的tensor转化为定长的tensor。 具体操作如下 加入将输入的tensor生成2*2的tensor。采用max pooling。 input tensor: 将tensor分割为四部分。 最后得到如下tensor
阅读全文
摘要:一、Rich feature hierarchies for accurate object detection and semantic segmentation 论文地址:http://openaccess.thecvf.com/content_cvpr_2014/papers/Girshick
阅读全文