Fast-RCNN icon indicating copy to clipboard operation
Fast-RCNN copied to clipboard

My implementation of Fast-RCNN (tensorflow)

Results 10 Fast-RCNN issues
Sort by recently updated
recently updated
newest added

Hello! I found an error when running your code. I ran ```python train.py``` and get this error: ``` Traceback (most recent call last): File "train.py", line 184, in net =...

你好,很感谢您贡献了代码; 我正在尝试使用车辆数据训练fastrcnn;根据数据集我只修改了config.py中的模型位置和标签数量,还有Net.py中的flatten函数加入了tf.reshape(roi_pool6, (-1, 256*6*6)),将其运行起来。但是训练的结果不尽人意。 我得到的标签总是背景和框不准确。请问是我有什么做的不对吗或者还有什么关键步骤遗漏了。 感谢你的阅读。

请问label存储的是什么

兄弟,你好,有个疑问想向你请教一下,你对读入图像的大小是怎么处理的?

你好 下面这段代码中 构造rois信息 这里使用的是原图中的rois坐标吗? roi_pooling函数中rois参数的坐标是指原图坐标还是feature map坐标? rois.append( [rois_label[1] + i, int(rois_label[2])-1, int(rois_label[3])-1, int(rois_label[4])+1, int(rois_label[5])+1])

博主您好,学生最近要做一个关于目标检测的课程设计,这段代码我很喜欢,但是里面池化操作的那个op我不知道怎么引入来,python setup.py install提醒系统找不到指定文件?

您好,我现在正在学习用深度学习做绝缘子定位检测相关的内容,但是相关的绝缘子数据比较少,所以方便的话,可以分享下你用来测试这个Fast-RCNN的数据集吗?

想请教一下改进selectivesearch提取候选框的思路?