菜鸡信息技术
计算机视觉
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
论文笔记:EAST: an Efficient and Accuracy Scene Text detection pipeline
直接在整张图像上预测文字目标和它的几何轮廓,模型是全卷积神经网络,每个像素位置都输出密集的文字预测。排除了生成候选目标,生成文字区域,字母分割(candidate proposal, text region formation, word partition)等中间过程。后续过程仅包含thresholding和 NMS。large words: need features f...原创 2019-08-29 09:23:26 · 2279 阅读 · 2 评论 -
EAST installation
code地址:https://github.com/argman/EAST1、python3下安转opencv2、安装tensorflowpip install --ignore-installed --upgrade https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-1.0.0-cp34-cp34m-linux_x86_6原创 2019-08-29 09:23:12 · 2257 阅读 · 4 评论 -
python virtualenv install (seglink)
代码地址:https://github.com/dengdan/seglink 1、安装opencv3.1.0 参考http://blog.csdn.net/u011440558/article/details/783584472、创建虚拟环境seg-env,安装tensorflowsudo apt-get install python-pip python-dev python-...原创 2017-11-17 19:24:41 · 2066 阅读 · 3 评论 -
论文笔记:MobileNetV2: Inverted Residuals and Linear Bottlenecks
MobileNetV2: Inverted Residuals and Linear BottlenecksMobileNet V2是MobileNet V1的改进版。 MobileNet V1引入depthwise separable convolution代替standard convolution,减少运算量。 MobileNet V2主要的改进有两点:Linear Bottl...原创 2018-09-17 13:48:53 · 3497 阅读 · 0 评论 -
论文笔记:MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications
MobileNets: Efficient Convolutional Neural Networks for Mobile Vision ApplicationsMobileNets是基于深度可分离卷积(depthwise separable convolution)而设计的轻量级深度神经网络主要的思想是将一个标准卷积(standard convolution)分解成两个卷积,一个是深度...原创 2018-09-07 15:13:27 · 439 阅读 · 0 评论 -
faster rcnn winodws cpu配置笔记
参考 http://blog.csdn.net/mr_curry/article/details/547451161、下载caffe-master Matlab版本的Faster RCNN faster_rcnn_final_model.zip2、打开CommonSettings.pros 修改 (1)选用cpu版本 (2)选用MatlabSupport (3)修改Matlab路原创 2017-06-20 19:07:52 · 830 阅读 · 0 评论 -
Conditional Random Fields as Recurrent Neural Networks 阅读笔记 (未完)
在语义分割任务中,像素级分类对于图像理解很重要。提出一种Convolutional Neural Networks (CNNs)and Conditional Random Fields (CRFs)-based probabilistic graphical modelling的新形式。称为CRF-RNN,将CFR整合到CNN中,可端到端训练,避免了多余的操作。VOC 2012 benchm...原创 2018-11-15 15:18:31 · 1006 阅读 · 0 评论 -
Mask R-CNN 阅读
参考:Mask R-CNN详解https://blog.csdn.net/WZZ18191171661/article/details/79453780Network Architecture:对整个图像做特征提取the convolutional backbone architecture used for feature extraction over an entire image...原创 2018-11-28 14:21:33 · 274 阅读 · 0 评论 -
基于R-CNN的物体检测
基于R-CNN的物体检测原文地址:http://blog.csdn.net/hjimce/article/details/50187029作者:hjimce一、相关理论 本篇博文主要讲解2014年CVPR上的经典paper:《Rich feature hierarchies for Accurate Object Detection and Segmentation》,这篇文章的算法思想又被称之转载 2017-06-13 11:45:25 · 287 阅读 · 0 评论