目标识别
文章平均质量分 71
金字塔oo
这个作者很懒,什么都没留下…
展开
-
目标识别基础知识
http://www.cnblogs.com/gujianhan/p/6035514.html Roi:Region Of Interest OCR:Optical character recognition 光学字符识别 选择性搜索 Selective Search http://blog.csdn.net/mao_kun/article/details/50576003 OverFea原创 2017-10-21 14:29:30 · 1069 阅读 · 0 评论 -
调试faster_rcnn及常见问题
1.可能需要Python安装包:cython,python-opencv,easydict 2.下载 git clone –recursive https://github.com/rbgirshick/fast-rcnn.git 3.生成Cython模块 cd $FRCN_ROOT/lib make其中FRCN_ROOT为faster_rcnn的根目录 4.Make fast原创 2017-10-22 12:57:32 · 1974 阅读 · 0 评论 -
Ububtu14.04 配置caffe+cuda
Ubuntu配置caffe与常见错误的解决办法原创 2017-11-12 09:33:15 · 350 阅读 · 0 评论 -
VGG_VOC0712_SSD_300x300_deploy
name: “VGG_VOC0712_SSD_300x300_deploy” input: “data” input_shape { dim: 1 dim: 3 dim: 300 dim: 300 } layer { name: “conv1_1” type: “Convolution” bottom: “data” top: “conv1_1原创 2017-12-03 22:30:26 · 974 阅读 · 1 评论 -
VGG_VOC0712_SSD_300x300_train
name: “VGG_VOC0712_SSD_300x300_train” layer { name: “data” type: “AnnotatedData” top: “data” top: “label” include { phase: TRAIN } transform_param { mirror: true me原创 2017-12-03 22:29:02 · 2396 阅读 · 1 评论 -
ssd
from __future__ import print_functionimport caffefrom caffe.model_libs import *from google.protobuf import text_formatimport mathimport osimport shutilimport statimport subprocessimport sys# Ad原创 2017-12-03 22:25:59 · 468 阅读 · 0 评论 -
字符识别OCR(optical character recognition)经典框架解析
字符识别通常包含2个阶段: 1.字符检测(detection) 2.字符识别(recognition) 一.检测 检测常用的框架包括:R-CNN ,fast R-CNN,faster R-CNN,YOLO,SDD等框架。但是由于字符检测与通用的字符检测有一定的差别,字符有其特殊的特征: 1.文字目标的特殊性,一个很大的先验是,文字总是水平排列的。 2.文字的特征总感觉体现在edge上。原创 2017-11-19 13:29:25 · 5784 阅读 · 1 评论 -
caffe中常见层的用法以及参数
caffe中常见的一些层的用法,和参数配置 官方文档 http://caffe.berkeleyvision.org/tutorial/layers.html 1.Reshape 改变输入数据的维度 常见配置如下:layer { name: "reshape" type: "Reshape" bottom: "input" top: "output" r原创 2017-12-05 21:01:25 · 3023 阅读 · 1 评论