fast-rcnn训练自己数据集以及demo代码解读和总结(面向fast-rcnn初学者)
首先推荐 文章里面有讲如何安装fast-rcnn,以及编译。
fast-rcnn的地址:https://github.com/rbgirshick/fast-rcnn
demo.py代码解读:1.获取参数类型得到训练的类型,找到它的porototxt和model。2.net=caffe.Net(c1,c2,c3)得到网络c1是porototxt,c2是model,c3固定。3.进入demo(网络
...