├── .gitignore ├── Dilated_FCN-2s_VGG16 ├── demo.py ├── deploy.prototxt ├── solver.prototxt ├── train.prototxt └── val.prototxt ├── Dilated_FCN-2s_VGG19 ├── 2007_000129.jpg ├── 2007_000392.jpg ├── 2007_000738.jpg ├── demo.py └── deploy.prototxt ├── License ├── README.md ├── score.py ├── seg12val.txt ├── solvedilated.py ├── solvedilatedsbd.py ├── solvesurgery.py ├── surgery-instructions.txt ├── surgery.py ├── training-instructions.txt ├── training-sbd-instructions └── voc_layers.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG16/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG16/demo.py -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG16/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG16/deploy.prototxt -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG16/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG16/solver.prototxt -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG16/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG16/train.prototxt -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG16/val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG16/val.prototxt -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG19/2007_000129.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG19/2007_000129.jpg -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG19/2007_000392.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG19/2007_000392.jpg -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG19/2007_000738.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG19/2007_000738.jpg -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG19/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG19/demo.py -------------------------------------------------------------------------------- /Dilated_FCN-2s_VGG19/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/Dilated_FCN-2s_VGG19/deploy.prototxt -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/README.md -------------------------------------------------------------------------------- /score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/score.py -------------------------------------------------------------------------------- /seg12val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/seg12val.txt -------------------------------------------------------------------------------- /solvedilated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/solvedilated.py -------------------------------------------------------------------------------- /solvedilatedsbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/solvedilatedsbd.py -------------------------------------------------------------------------------- /solvesurgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/solvesurgery.py -------------------------------------------------------------------------------- /surgery-instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/surgery-instructions.txt -------------------------------------------------------------------------------- /surgery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/surgery.py -------------------------------------------------------------------------------- /training-instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/training-instructions.txt -------------------------------------------------------------------------------- /training-sbd-instructions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/training-sbd-instructions -------------------------------------------------------------------------------- /voc_layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifAmit/DilatedFCNSegmentation/HEAD/voc_layers.py --------------------------------------------------------------------------------