这周看完faster-rcnn后,应该对其源码进行一个解析,以便后面的使用。 那首先直接先主函数出发py-faster-rcnn/tools/train_faster_rcnn_alt_opt.py 我们在后端的运行命令为 python ./py-faster-rcnn/tools/train_fa ...
分类:
编程语言 时间:
2018-11-05 11:10:46
阅读次数:
214
1.faster_rcnn_end2end训练 1.1训练入口及配置 1.2 数据准备 从train_net.py:combined_roidb(imdb_name)处开始,得到的是gt数据集。 输入:“voc_2007_trainval”, 输出:imdb , roidb。 imdb是datase ...
分类:
其他好文 时间:
2018-10-31 17:50:22
阅读次数:
387
一、 Faster-RCNN代码解释 先看看代码结构: Data: This directory holds (after you download them): Caffe models pre-trained on ImageNet Faster R-CNN models Symlinks to ...
分类:
编程语言 时间:
2018-10-26 22:07:21
阅读次数:
233
This results in a significant improvement in speed for high-accuracy detection(59 FPS with mAP 74.3% on VOC2007 test, vs Faster-rcnn 7 FPS with mAP 73 ...
分类:
其他好文 时间:
2018-10-26 20:36:09
阅读次数:
366
一、Mask生成概览 上一节的末尾,我们已经获取了待检测图片的分类回归信息,我们将回归信息(即待检测目标的边框信息)单独提取出来,结合金字塔特征mrcnn_feature_maps,进行Mask生成工作。 ...
分类:
其他好文 时间:
2018-10-23 18:03:37
阅读次数:
531
Something on RoIAlign basic introduction and implementation 2018-10-22 22:40:09 Paper: Mask RCNN Code reference: https://github.com/longcw/RoIAlign.py ...
分类:
其他好文 时间:
2018-10-22 23:19:53
阅读次数:
532
ValueError: attempt to get argmax of an empty sequence 错误处理 在faster rcnn内进行随机裁剪数据增强,训练一段时间后报错: gt_argmax_overlaps = overlaps.argmax(axis=0) ValueError ...
分类:
其他好文 时间:
2018-10-12 13:48:25
阅读次数:
583
近几年深度学习在物体检测方面出现了许多基于不同框架的网络模型,不同模型需要不同的版本的Python、TensorFlow、Keras、CUDA、cuDNN以及操作系统。不得不说,要把经典物体检测网络的源码都跑通,单配置环境就要浪费很多时间,因为目前兼容这些经典网络的框架和环境还很少。新版的TensorFlow在models的objection-detection模块中包含了fast-rcnn、rf
分类:
系统相关 时间:
2018-10-09 17:07:15
阅读次数:
736
Mask R-CNN Mask R-CNN详解 开源代码: Tensorflow版本代码链接; Keras and TensorFlow版本代码链接; MxNet版本代码链接 ...
分类:
其他好文 时间:
2018-10-07 11:03:11
阅读次数:
221
上一节我们已经谈到了计算节点,但是即使是官方文档介绍里面相关内容也过于简略,我们使用Faster-RCNN代码中的新建节点为例,重新介绍一下新建节点的调用栈。 1、调用新建节点 参数分为三部分,op_type是节点名称,对应于辅助class的装饰器的输入;其他参数一部分传递给辅助class的初始化函 ...
分类:
Web程序 时间:
2018-09-27 22:08:59
阅读次数:
163