
目标识别
文章平均质量分 81
xiangpan0111
这个作者很懒,什么都没留下…
展开
-
Fast R-CNN/Faster R-CNN:编译Caffe and pycaffe存在的BUG
Bug 1、./include/caffe/util/hdf5.hpp:6:18: fatal error: hdf5.h: No such file or directorySolution:(1)在Makefile.config修改INCLUDE_DIRS和LIBRARY_DIRS,分别添加” /usr/include/hdf5/serial/“和”/usr/lib/x86_64-linux-...原创 2018-03-24 19:33:22 · 375 阅读 · 0 评论 -
darknet 如何训练自己的数据集
darknet 官网:https://pjreddie.com/1、使用matlab2017的 trainingImageLabeler命令对图像进行标记,并产生table数据类型;2、将table中数据转化为指定的xml文件(img_to_xml_table.m);3、将Annotations中的数据生成trainval.txt、train.txt、val.txt、test.txt文件(gene...原创 2018-04-09 21:41:45 · 2318 阅读 · 0 评论 -
Faster R-CNN 兼容不同版本的cudnn
faster rcnn 代码默认是使用的cudnn v4,但是为了体验不同版本的cudnn,我们编译faster rcnn的时候就会报错:In file included from ./include/caffe/util/cudnn.hpp:5:0, from ./include/caffe/util/device_alternate.hpp:40, ...转载 2018-04-10 10:14:09 · 442 阅读 · 0 评论 -
Faster R-CNN训练中存在的问题
1、AttributeError: 'module' object has no attribute 'text_format'解决方案:(1)经过google之后发现是protobuf的本版发生了变换,之前在配置caffe的时候手动安装了protbuf,版本是2.5.0,后来安装了tensorflow 我回忆了一下,protobuf的版本貌似是发生了变换。所以解决办法:sudo pip inst...原创 2018-04-12 16:25:25 · 982 阅读 · 0 评论