├── .gitignore ├── .idea ├── PyTorch_Semantic_Segmentation.iml ├── encodings.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── 3DGNN_PyTorch ├── 3DGNN.py ├── README.md └── net.png ├── DeepLabV3_PyTorch ├── README.md ├── deeplabv3.py ├── net.png └── resnet101.py ├── DeepLabV3plus_PyTorch ├── README.md ├── deeplabv3plus.py ├── net.png └── resnet101.py ├── DenseASPP_PyTorch ├── README.md ├── denseaspp.py ├── net.png └── resnet101.py ├── FCN_PyTorch ├── README.md ├── fcn8s.py └── net.png ├── FastFCN_PyTorch ├── README.md ├── fastfcn.py ├── net.png └── resnet101.py ├── LICENSE ├── PSPNet_PyTorch ├── README.md ├── net.png ├── pspnet.py └── resnet101.py ├── PointNet_PyTorch ├── README.md ├── feat_transform.py ├── net.png └── pointnet.py ├── RDFNet_PyTorch ├── README.md ├── blocks.py ├── net.png ├── rdfnet.py └── resnet101.py ├── README.md └── RefineNet_PyTorch ├── README.md ├── RefineNet.py ├── blocks.py ├── net.png └── resnet101.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /.idea/PyTorch_Semantic_Segmentation.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/PyTorch_Semantic_Segmentation.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /3DGNN_PyTorch/3DGNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/3DGNN_PyTorch/3DGNN.py -------------------------------------------------------------------------------- /3DGNN_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/3DGNN_PyTorch/README.md -------------------------------------------------------------------------------- /3DGNN_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/3DGNN_PyTorch/net.png -------------------------------------------------------------------------------- /DeepLabV3_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3_PyTorch/README.md -------------------------------------------------------------------------------- /DeepLabV3_PyTorch/deeplabv3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3_PyTorch/deeplabv3.py -------------------------------------------------------------------------------- /DeepLabV3_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3_PyTorch/net.png -------------------------------------------------------------------------------- /DeepLabV3_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3_PyTorch/resnet101.py -------------------------------------------------------------------------------- /DeepLabV3plus_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3plus_PyTorch/README.md -------------------------------------------------------------------------------- /DeepLabV3plus_PyTorch/deeplabv3plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3plus_PyTorch/deeplabv3plus.py -------------------------------------------------------------------------------- /DeepLabV3plus_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3plus_PyTorch/net.png -------------------------------------------------------------------------------- /DeepLabV3plus_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DeepLabV3plus_PyTorch/resnet101.py -------------------------------------------------------------------------------- /DenseASPP_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DenseASPP_PyTorch/README.md -------------------------------------------------------------------------------- /DenseASPP_PyTorch/denseaspp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DenseASPP_PyTorch/denseaspp.py -------------------------------------------------------------------------------- /DenseASPP_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DenseASPP_PyTorch/net.png -------------------------------------------------------------------------------- /DenseASPP_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/DenseASPP_PyTorch/resnet101.py -------------------------------------------------------------------------------- /FCN_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FCN_PyTorch/README.md -------------------------------------------------------------------------------- /FCN_PyTorch/fcn8s.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FCN_PyTorch/fcn8s.py -------------------------------------------------------------------------------- /FCN_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FCN_PyTorch/net.png -------------------------------------------------------------------------------- /FastFCN_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FastFCN_PyTorch/README.md -------------------------------------------------------------------------------- /FastFCN_PyTorch/fastfcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FastFCN_PyTorch/fastfcn.py -------------------------------------------------------------------------------- /FastFCN_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FastFCN_PyTorch/net.png -------------------------------------------------------------------------------- /FastFCN_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/FastFCN_PyTorch/resnet101.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /PSPNet_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PSPNet_PyTorch/README.md -------------------------------------------------------------------------------- /PSPNet_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PSPNet_PyTorch/net.png -------------------------------------------------------------------------------- /PSPNet_PyTorch/pspnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PSPNet_PyTorch/pspnet.py -------------------------------------------------------------------------------- /PSPNet_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PSPNet_PyTorch/resnet101.py -------------------------------------------------------------------------------- /PointNet_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PointNet_PyTorch/README.md -------------------------------------------------------------------------------- /PointNet_PyTorch/feat_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PointNet_PyTorch/feat_transform.py -------------------------------------------------------------------------------- /PointNet_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PointNet_PyTorch/net.png -------------------------------------------------------------------------------- /PointNet_PyTorch/pointnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/PointNet_PyTorch/pointnet.py -------------------------------------------------------------------------------- /RDFNet_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RDFNet_PyTorch/README.md -------------------------------------------------------------------------------- /RDFNet_PyTorch/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RDFNet_PyTorch/blocks.py -------------------------------------------------------------------------------- /RDFNet_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RDFNet_PyTorch/net.png -------------------------------------------------------------------------------- /RDFNet_PyTorch/rdfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RDFNet_PyTorch/rdfnet.py -------------------------------------------------------------------------------- /RDFNet_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RDFNet_PyTorch/resnet101.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/README.md -------------------------------------------------------------------------------- /RefineNet_PyTorch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RefineNet_PyTorch/README.md -------------------------------------------------------------------------------- /RefineNet_PyTorch/RefineNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RefineNet_PyTorch/RefineNet.py -------------------------------------------------------------------------------- /RefineNet_PyTorch/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RefineNet_PyTorch/blocks.py -------------------------------------------------------------------------------- /RefineNet_PyTorch/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RefineNet_PyTorch/net.png -------------------------------------------------------------------------------- /RefineNet_PyTorch/resnet101.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/charlesCXK/PyTorch_Semantic_Segmentation/HEAD/RefineNet_PyTorch/resnet101.py --------------------------------------------------------------------------------