
图像语义分割代码
文章平均质量分 76
把详细学习和分析过的语义分割开源代码和自己写的代码进行分享
明天去哪
博观而约取,厚积而薄发.每天坚持写代码
展开
-
Deeplab v3 (2): 源码分析
代码: https://github.com/tensorflow/models/tree/master/research/deeplab主要函数及注释如下main() # 配置GPU conifg = slim.deployment.model_deploy.DeploymentConfig(xxx) # Create a DeploymentConfig for...原创 2018-06-12 10:40:27 · 6405 阅读 · 4 评论 -
pix2pixHD安装
安装pytorch这个照着官网来就行,本人使用pytorch 0.4.0 cuda 9.0,可以进行使用sudo pip install http://download.pytorch.org/whl/cu90/torch-0.4.0-cp27-cp27mu-linux_x86_64.whlsudo pip install torchvision安装dominatesud...原创 2018-06-05 11:04:57 · 3575 阅读 · 2 评论 -
Deeplab v3 (1): 源码训练和测试
本文主要介绍根据github tensorflow/models中官方代码来训练deeplab v3+源代码: https://github.com/tensorflow/models/tree/master/research/deeplab配置deeplab v3Clone 源代码, https://github.com/tensorflow/models.git根据官方...原创 2018-06-03 09:22:52 · 10847 阅读 · 15 评论 -
用于FCN的Pascal VOC 2012增强版语义分割数据集制作
数据集准备train/val/test的划分,这个采用Hariharan[1]的做法,这个也是deeplab采用的方法,下载地址https://ucla.app.box.com/s/rd9z2xvwsfpksi7mi08i2xqrj7ab4keb 目录如下: test.txt test_id.txt train.txttrain_aug.txt trainval...原创 2018-03-26 17:03:37 · 9843 阅读 · 19 评论 -
ParseNet源码训练和分析
ParseNet官方源代码位置: Caffe: https://github.com/weiliu89/caffe/tree/fcn model: https://gist.github.com/weiliu89/45e9e8de2c13af6476ca#file-readme-md编译Caffe直接从github上clone下来代码 git clone htt...原创 2018-03-05 10:23:58 · 1295 阅读 · 3 评论 -
[vgg16]vgg16相关文件
solver.prototxtnet: "models/vgg16/train_val.prototxt" test_iter: 1000 test_interval: 2500 base_lr: 0.001 lr_policy: "step" gamma: 0.1 stepsize: 50000 display: 20 max_iter: 200000 ...原创 2017-08-03 10:44:55 · 1752 阅读 · 4 评论 -
The Setup of Deeplab v2
1. Clone the codeRefer to http://blog.youkuaiyun.com/Xmo_jiao/article/details/778971092. Make the datasetRefer to https://blog.youkuaiyun.com/u014451076/article/details/79700653 Note: When we convert th...原创 2018-01-31 19:46:00 · 617 阅读 · 7 评论 -
The Setup of FCN
Pipeline1. Clone the codeRefer to https://github.com/shelhamer/fcn.berkeleyvision.org2. File Structure- data // store the dataset - pascal- voc-fcn32s // store the code os voc-fcn...原创 2018-01-30 10:43:52 · 402 阅读 · 0 评论