├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── fcn16_downsampled.png ├── fcn16_upsampled.png ├── fcn16_vgg.py ├── fcn32_downsampled.png ├── fcn32_upsampled.png ├── fcn32_vgg.py ├── fcn8_downsampled.png ├── fcn8_upsampled.png ├── fcn8_vgg.py ├── loss.py ├── requirements.txt ├── test_data └── tabby_cat.png ├── test_fcn16_vgg.py ├── test_fcn32_vgg.py ├── test_fcn8_vgg.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fcn16_downsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn16_downsampled.png -------------------------------------------------------------------------------- /fcn16_upsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn16_upsampled.png -------------------------------------------------------------------------------- /fcn16_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn16_vgg.py -------------------------------------------------------------------------------- /fcn32_downsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn32_downsampled.png -------------------------------------------------------------------------------- /fcn32_upsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn32_upsampled.png -------------------------------------------------------------------------------- /fcn32_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn32_vgg.py -------------------------------------------------------------------------------- /fcn8_downsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn8_downsampled.png -------------------------------------------------------------------------------- /fcn8_upsampled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn8_upsampled.png -------------------------------------------------------------------------------- /fcn8_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/fcn8_vgg.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/loss.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_data/tabby_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/test_data/tabby_cat.png -------------------------------------------------------------------------------- /test_fcn16_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/test_fcn16_vgg.py -------------------------------------------------------------------------------- /test_fcn32_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/test_fcn32_vgg.py -------------------------------------------------------------------------------- /test_fcn8_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/test_fcn8_vgg.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarvinTeichmann/tensorflow-fcn/HEAD/utils.py --------------------------------------------------------------------------------