├── .gitignore ├── CMakeLists.txt ├── Config.cmake.in ├── LICENSE ├── README-Chinese.md ├── README.md ├── docs └── training tricks.md ├── prediction.jpg ├── segmentation.pc.in ├── src ├── SegDataset.cpp ├── SegDataset.h ├── Segmentor.cpp ├── Segmentor.h ├── architectures │ ├── DeepLab.cpp │ ├── DeepLab.h │ ├── DeepLabDecoder.cpp │ ├── DeepLabDecoder.h │ ├── FPN.cpp │ ├── FPN.h │ ├── FPNDecoder.cpp │ ├── FPNDecoder.h │ ├── LinkNet.cpp │ ├── LinkNet.h │ ├── LinknetDecoder.cpp │ ├── LinknetDecoder.h │ ├── PAN.cpp │ ├── PAN.h │ ├── PANDecoder.cpp │ ├── PANDecoder.h │ ├── PSPNet.cpp │ ├── PSPNet.h │ ├── PSPNetDecoder.cpp │ ├── PSPNetDecoder.h │ ├── UNet.cpp │ ├── UNet.h │ ├── UNetDecoder.cpp │ └── UNetDecoder.h ├── backbones │ ├── ResNet.cpp │ ├── ResNet.h │ ├── VGG.cpp │ └── VGG.h └── utils │ ├── Augmentations.cpp │ ├── Augmentations.h │ ├── InterFace.h │ ├── _dirent.h │ ├── json.hpp │ ├── loss.h │ ├── readfile.h │ ├── util.cpp │ └── util.h ├── test ├── CMakeLists.txt ├── resnet34.cpp └── train.cpp ├── trace.py ├── voc_person_seg ├── train │ ├── 2007_000027.jpg │ ├── 2007_000027.json │ ├── 2007_000170.jpg │ ├── 2007_000170.json │ ├── 2007_000272.jpg │ ├── 2007_000272.json │ ├── 2007_000323.jpg │ ├── 2007_000346.jpg │ ├── 2007_000346.json │ ├── 2007_000423.jpg │ ├── 2007_000423.json │ ├── 2007_000664.jpg │ ├── 2007_000664.json │ ├── 2007_000733.jpg │ ├── 2007_000733.json │ ├── 2007_000762.jpg │ ├── 2007_000783.jpg │ ├── 2007_000783.json │ ├── 2007_000799.jpg │ ├── 2007_000799.json │ ├── 2007_000807.jpg │ ├── 2007_000807.json │ ├── 2007_000836.jpg │ ├── 2007_000836.json │ ├── 2007_000847.jpg │ ├── 2007_000847.json │ ├── 2007_000999.jpg │ ├── 2007_000999.json │ ├── 2007_001185.jpg │ ├── 2007_001185.json │ ├── 2007_001408.jpg │ ├── 2007_001408.json │ ├── 2007_001430.jpg │ ├── 2007_001430.json │ ├── 2007_001526.jpg │ ├── 2007_001558.jpg │ ├── 2007_001583.jpg │ ├── 2007_001585.jpg │ ├── 2007_001585.json │ ├── 2007_001627.jpg │ ├── 2007_001627.json │ ├── 2007_001630.jpg │ ├── 2007_001630.json │ ├── 2007_001717.jpg │ ├── 2007_001717.json │ ├── 2007_002293.jpg │ ├── 2007_002293.json │ ├── 2007_002668.jpg │ ├── 2007_002728.jpg │ ├── 2007_002728.json │ ├── 2007_002824.jpg │ ├── 2007_002824.json │ ├── 2007_003106.jpg │ ├── 2007_003106.json │ ├── 2007_003118.jpg │ ├── 2007_003188.jpg │ ├── 2007_003188.json │ ├── 2007_003189.jpg │ ├── 2007_003189.json │ ├── 2007_003191.jpg │ ├── 2007_003191.json │ ├── 2007_003205.jpg │ ├── 2007_003205.json │ ├── 2007_003329.jpg │ ├── 2007_003529.jpg │ ├── 2007_003530.jpg │ ├── 2007_003530.json │ ├── 2007_003541.jpg │ ├── 2007_003541.json │ ├── 2007_003742.jpg │ ├── 2007_003742.json │ ├── 2007_003745.jpg │ └── 2007_003745.json └── val │ ├── 2007_003747.jpg │ ├── 2007_003747.json │ ├── 2007_004000.jpg │ ├── 2007_004000.json │ ├── 2007_004049.jpg │ ├── 2007_004133.jpg │ ├── 2007_004133.json │ ├── 2007_004197.jpg │ ├── 2007_004197.json │ ├── 2007_004291.jpg │ ├── 2007_004392.jpg │ ├── 2007_004397.jpg │ ├── 2007_004476.jpg │ ├── 2007_004476.json │ ├── 2007_004712.jpg │ ├── 2007_004712.json │ ├── 2007_004831.jpg │ ├── 2007_004902.jpg │ ├── 2007_005019.jpg │ ├── 2007_005086.jpg │ ├── 2007_005086.json │ ├── 2007_005124.jpg │ └── 2007_005124.json └── weights └── input weights here.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/Config.cmake.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README-Chinese.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/README-Chinese.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/README.md -------------------------------------------------------------------------------- /docs/training tricks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/docs/training tricks.md -------------------------------------------------------------------------------- /prediction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/prediction.jpg -------------------------------------------------------------------------------- /segmentation.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/segmentation.pc.in -------------------------------------------------------------------------------- /src/SegDataset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/SegDataset.cpp -------------------------------------------------------------------------------- /src/SegDataset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/SegDataset.h -------------------------------------------------------------------------------- /src/Segmentor.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Segmentor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/Segmentor.h -------------------------------------------------------------------------------- /src/architectures/DeepLab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/DeepLab.cpp -------------------------------------------------------------------------------- /src/architectures/DeepLab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/DeepLab.h -------------------------------------------------------------------------------- /src/architectures/DeepLabDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/DeepLabDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/DeepLabDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/DeepLabDecoder.h -------------------------------------------------------------------------------- /src/architectures/FPN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/FPN.cpp -------------------------------------------------------------------------------- /src/architectures/FPN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/FPN.h -------------------------------------------------------------------------------- /src/architectures/FPNDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/FPNDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/FPNDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/FPNDecoder.h -------------------------------------------------------------------------------- /src/architectures/LinkNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/LinkNet.cpp -------------------------------------------------------------------------------- /src/architectures/LinkNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/LinkNet.h -------------------------------------------------------------------------------- /src/architectures/LinknetDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/LinknetDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/LinknetDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/LinknetDecoder.h -------------------------------------------------------------------------------- /src/architectures/PAN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PAN.cpp -------------------------------------------------------------------------------- /src/architectures/PAN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PAN.h -------------------------------------------------------------------------------- /src/architectures/PANDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PANDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/PANDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PANDecoder.h -------------------------------------------------------------------------------- /src/architectures/PSPNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PSPNet.cpp -------------------------------------------------------------------------------- /src/architectures/PSPNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PSPNet.h -------------------------------------------------------------------------------- /src/architectures/PSPNetDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PSPNetDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/PSPNetDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/PSPNetDecoder.h -------------------------------------------------------------------------------- /src/architectures/UNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/UNet.cpp -------------------------------------------------------------------------------- /src/architectures/UNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/UNet.h -------------------------------------------------------------------------------- /src/architectures/UNetDecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/UNetDecoder.cpp -------------------------------------------------------------------------------- /src/architectures/UNetDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/architectures/UNetDecoder.h -------------------------------------------------------------------------------- /src/backbones/ResNet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/backbones/ResNet.cpp -------------------------------------------------------------------------------- /src/backbones/ResNet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/backbones/ResNet.h -------------------------------------------------------------------------------- /src/backbones/VGG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/backbones/VGG.cpp -------------------------------------------------------------------------------- /src/backbones/VGG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/backbones/VGG.h -------------------------------------------------------------------------------- /src/utils/Augmentations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/Augmentations.cpp -------------------------------------------------------------------------------- /src/utils/Augmentations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/Augmentations.h -------------------------------------------------------------------------------- /src/utils/InterFace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/InterFace.h -------------------------------------------------------------------------------- /src/utils/_dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/_dirent.h -------------------------------------------------------------------------------- /src/utils/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/json.hpp -------------------------------------------------------------------------------- /src/utils/loss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/loss.h -------------------------------------------------------------------------------- /src/utils/readfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/readfile.h -------------------------------------------------------------------------------- /src/utils/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/util.cpp -------------------------------------------------------------------------------- /src/utils/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/src/utils/util.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/resnet34.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/test/resnet34.cpp -------------------------------------------------------------------------------- /test/train.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/test/train.cpp -------------------------------------------------------------------------------- /trace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/trace.py -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000027.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000027.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000027.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000170.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000170.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000170.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000170.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000272.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000272.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000272.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000272.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000323.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000323.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000346.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000346.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000346.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000423.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000423.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000423.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000664.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000664.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000664.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000664.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000733.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000733.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000733.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000733.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000762.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000762.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000783.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000783.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000783.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000783.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000799.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000799.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000799.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000799.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000807.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000807.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000807.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000807.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000836.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000836.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000836.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000836.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000847.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000847.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000847.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000847.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000999.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000999.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_000999.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_000999.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001185.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001185.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001185.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001185.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001408.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001408.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001408.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001408.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001430.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001430.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001430.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001526.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001526.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001558.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001558.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001583.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001583.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001585.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001585.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001585.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001585.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001627.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001627.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001627.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001627.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001630.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001630.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001630.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001717.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001717.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_001717.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_001717.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002293.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002293.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002293.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002668.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002668.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002728.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002728.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002728.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002728.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002824.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002824.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_002824.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_002824.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003106.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003106.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003106.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003118.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003118.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003188.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003188.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003188.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003188.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003189.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003189.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003189.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003189.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003191.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003191.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003205.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003205.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003205.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003205.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003329.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003329.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003529.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003529.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003530.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003530.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003530.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003530.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003541.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003541.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003541.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003541.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003742.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003742.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003742.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003742.json -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003745.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003745.jpg -------------------------------------------------------------------------------- /voc_person_seg/train/2007_003745.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/train/2007_003745.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_003747.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_003747.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_003747.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_003747.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004000.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004000.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004049.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004049.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004133.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004133.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004133.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004133.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004197.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004197.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004197.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004197.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004291.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004291.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004392.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004392.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004397.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004397.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004476.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004476.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004476.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004476.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004712.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004712.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004712.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004712.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004831.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004831.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_004902.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_004902.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_005019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_005019.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_005086.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_005086.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_005086.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_005086.json -------------------------------------------------------------------------------- /voc_person_seg/val/2007_005124.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_005124.jpg -------------------------------------------------------------------------------- /voc_person_seg/val/2007_005124.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AllentDan/LibtorchSegmentation/HEAD/voc_person_seg/val/2007_005124.json -------------------------------------------------------------------------------- /weights/input weights here.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------