├── .gitignore ├── .idea ├── misc.xml ├── modules.xml ├── untitled.iml ├── vcs.xml └── workspace.xml ├── README.md ├── RefineNet ├── demo.py ├── multi_gpu_train.py └── test.py ├── convert_pascal_voc_to_tfrecords.py ├── data ├── color_map └── tmp.jpg ├── demo ├── 2007_000713.jpg ├── 2007_000733.jpg ├── 2007_000738.jpg └── u=4259890413,701970681&fm=26&gp=0.jpg ├── nets ├── __init__.py ├── model.py ├── model_v2.py ├── resnet_utils.py └── resnet_v1.py ├── result ├── 2007_000713.jpg ├── 2007_000733.jpg ├── 2007_000738.jpg └── u=4259890413,701970681&fm=26&gp=0.jpg └── utils ├── __init__.py ├── augmentation.py ├── pascal_voc.py ├── tf_records.py ├── training.py └── visualization.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/untitled.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.idea/untitled.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /RefineNet/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/RefineNet/demo.py -------------------------------------------------------------------------------- /RefineNet/multi_gpu_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/RefineNet/multi_gpu_train.py -------------------------------------------------------------------------------- /RefineNet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/RefineNet/test.py -------------------------------------------------------------------------------- /convert_pascal_voc_to_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/convert_pascal_voc_to_tfrecords.py -------------------------------------------------------------------------------- /data/color_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/data/color_map -------------------------------------------------------------------------------- /data/tmp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/data/tmp.jpg -------------------------------------------------------------------------------- /demo/2007_000713.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/demo/2007_000713.jpg -------------------------------------------------------------------------------- /demo/2007_000733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/demo/2007_000733.jpg -------------------------------------------------------------------------------- /demo/2007_000738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/demo/2007_000738.jpg -------------------------------------------------------------------------------- /demo/u=4259890413,701970681&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/demo/u=4259890413,701970681&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/nets/model.py -------------------------------------------------------------------------------- /nets/model_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/nets/model_v2.py -------------------------------------------------------------------------------- /nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/nets/resnet_utils.py -------------------------------------------------------------------------------- /nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/nets/resnet_v1.py -------------------------------------------------------------------------------- /result/2007_000713.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/result/2007_000713.jpg -------------------------------------------------------------------------------- /result/2007_000733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/result/2007_000733.jpg -------------------------------------------------------------------------------- /result/2007_000738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/result/2007_000738.jpg -------------------------------------------------------------------------------- /result/u=4259890413,701970681&fm=26&gp=0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/result/u=4259890413,701970681&fm=26&gp=0.jpg -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/utils/augmentation.py -------------------------------------------------------------------------------- /utils/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/utils/pascal_voc.py -------------------------------------------------------------------------------- /utils/tf_records.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/utils/tf_records.py -------------------------------------------------------------------------------- /utils/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/utils/training.py -------------------------------------------------------------------------------- /utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eragonruan/refinenet-image-segmentation/HEAD/utils/visualization.py --------------------------------------------------------------------------------