
程序代码
荪荪
这个作者很懒,什么都没留下…
展开
-
【深度学习:目标检测】 py-faster-rcnn_caffemodel对人脸进行标注
转载:http://blog.youkuaiyun.com/xzzppp/article/details/52071546本程序在py-faster-rcnn/tools/demo.py的基础上进行修改程序功能:利用训练好的caffemodel,对人脸进行标注[python] view plain copy#!/usr/bin/env转载 2016-10-07 19:01:34 · 2720 阅读 · 0 评论 -
【深度学习:目标检测】 Face Detection with the Faster R-CNN(数据集标注对比研究报告 )
转载:http://blog.youkuaiyun.com/xzzppp/article/details/520716141、简介 Faster R-CNN是R-CNN系列深度学习人脸检测最好的方法,mean average precision(mAP)达到73.2%,目标检测的速度可以达到每秒5帧。 技术上将RPN网络和FastR-CNN网络结合到了一起,是一个CNN网络实现转载 2016-10-07 19:03:14 · 2821 阅读 · 1 评论 -
【python】List与string转化--test_veh.py代码
第一种方法:#coding=utf8 a = ['I', 0, 1, 2, 2, 3] for i in range(0,a.__len__()): a[i] = str(a[i]) print a str1 = ", " str1 = str1.join(a) print str1运行结果为['I', '0', '1', '2', '2', '3'原创 2017-02-06 13:55:35 · 1639 阅读 · 0 评论 -
临时需要用的网址 caffemodel
http://www.cnblogs.com/zjutzz/p/6185452.htmlCaffe学习:使用pycaffe读取caffemodel参数 http://blog.youkuaiyun.com/u011762313/article/details/49851795原创 2017-02-06 14:54:24 · 847 阅读 · 0 评论