├── .gitignore ├── README.md ├── eval.py ├── results ├── T1 │ ├── accuracy.txt │ ├── labelled │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_5.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Good_Background_9.png │ ├── seg │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_5.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Good_Background_9.png │ ├── test │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_5.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Good_Background_9.png │ └── truth │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Good_Background_5.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Good_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Good_Background_9.png ├── T2 │ ├── accuracy.txt │ ├── labelled │ │ ├── Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png │ │ ├── Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png │ ├── seg │ │ ├── Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png │ │ ├── Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png │ ├── test │ │ ├── Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png │ │ ├── Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png │ └── truth │ │ ├── Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png │ │ ├── Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png │ │ ├── Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png │ │ ├── Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png │ │ └── Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png └── T3 │ ├── accuracy.txt │ ├── labelled │ ├── Alec-MotoXPlay-GoodLighting-Tpose_2_2.png │ ├── Alec-MotoXPlay-GoodLighting-Tpose_3.png │ ├── Alec-SamsungNote3-GoodLighting-Tpose_4.png │ ├── Alec-iPhone6-GoodLighting-Tpose_1.png │ ├── Oliver-Nexus4-GoodLighting-Tpose_8.png │ ├── Oliver-SamsungNote3-GoodLighting-Tpose_9.png │ ├── Oliver-iPhone6-GoodLighting-Overhead_5.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_2_6.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_7.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_13.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_2_12.png │ ├── Robyn-iPhone6-GoodLighting-JumpingJack_10.png │ └── Robyn-iPhone6-GoodLighting-Tpose_11.png │ ├── seg │ ├── Alec-MotoXPlay-GoodLighting-Tpose_2_2.png │ ├── Alec-MotoXPlay-GoodLighting-Tpose_3.png │ ├── Alec-SamsungNote3-GoodLighting-Tpose_4.png │ ├── Alec-iPhone6-GoodLighting-Tpose_1.png │ ├── Oliver-Nexus4-GoodLighting-Tpose_8.png │ ├── Oliver-SamsungNote3-GoodLighting-Tpose_9.png │ ├── Oliver-iPhone6-GoodLighting-Overhead_5.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_2_6.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_7.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_13.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_2_12.png │ ├── Robyn-iPhone6-GoodLighting-JumpingJack_10.png │ └── Robyn-iPhone6-GoodLighting-Tpose_11.png │ ├── test │ ├── Alec-MotoXPlay-GoodLighting-Tpose_2_2.png │ ├── Alec-MotoXPlay-GoodLighting-Tpose_3.png │ ├── Alec-SamsungNote3-GoodLighting-Tpose_4.png │ ├── Alec-iPhone6-GoodLighting-Tpose_1.png │ ├── Oliver-Nexus4-GoodLighting-Tpose_8.png │ ├── Oliver-SamsungNote3-GoodLighting-Tpose_9.png │ ├── Oliver-iPhone6-GoodLighting-Overhead_5.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_2_6.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_7.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_13.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_2_12.png │ ├── Robyn-iPhone6-GoodLighting-JumpingJack_10.png │ └── Robyn-iPhone6-GoodLighting-Tpose_11.png │ └── truth │ ├── Alec-MotoXPlay-GoodLighting-Tpose_2_2.png │ ├── Alec-MotoXPlay-GoodLighting-Tpose_3.png │ ├── Alec-SamsungNote3-GoodLighting-Tpose_4.png │ ├── Alec-iPhone6-GoodLighting-Tpose_1.png │ ├── Oliver-Nexus4-GoodLighting-Tpose_8.png │ ├── Oliver-SamsungNote3-GoodLighting-Tpose_9.png │ ├── Oliver-iPhone6-GoodLighting-Overhead_5.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_2_6.png │ ├── Oliver-iPhone6-GoodLighting-Tpose_7.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_13.png │ ├── Robyn-Nexus4-GoodLighting-Tpose_2_12.png │ ├── Robyn-iPhone6-GoodLighting-JumpingJack_10.png │ └── Robyn-iPhone6-GoodLighting-Tpose_11.png ├── scripts ├── accuracy.py ├── clahe.py ├── computeAccuracies.py ├── fcn_predict.py ├── resize.py └── segment.py └── src ├── caffemodel-url ├── deploy.prototxt ├── net.png ├── net.py ├── solve.py ├── solver.prototxt ├── train.prototxt └── val.prototxt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/README.md -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/eval.py -------------------------------------------------------------------------------- /results/T1/accuracy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/accuracy.txt -------------------------------------------------------------------------------- /results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png -------------------------------------------------------------------------------- /results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/labelled/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png -------------------------------------------------------------------------------- /results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/seg/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png -------------------------------------------------------------------------------- /results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png -------------------------------------------------------------------------------- /results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png -------------------------------------------------------------------------------- /results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png -------------------------------------------------------------------------------- /results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png -------------------------------------------------------------------------------- /results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png -------------------------------------------------------------------------------- /results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png -------------------------------------------------------------------------------- /results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png -------------------------------------------------------------------------------- /results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/test/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_2.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_3.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_4.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_MotoXPlay_Good_Lighting_Good_Background_5.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_10.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_7.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_8.png -------------------------------------------------------------------------------- /results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T1/truth/Alec_SamsungNote3_Good_Lighting_Good_Background_9.png -------------------------------------------------------------------------------- /results/T2/accuracy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/accuracy.txt -------------------------------------------------------------------------------- /results/T2/labelled/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png -------------------------------------------------------------------------------- /results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/labelled/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png -------------------------------------------------------------------------------- /results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/seg/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png -------------------------------------------------------------------------------- /results/T2/test/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png -------------------------------------------------------------------------------- /results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png -------------------------------------------------------------------------------- /results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png -------------------------------------------------------------------------------- /results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png -------------------------------------------------------------------------------- /results/T2/test/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png -------------------------------------------------------------------------------- /results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png -------------------------------------------------------------------------------- /results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png -------------------------------------------------------------------------------- /results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/test/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_MotoXPlay_Bad_Lighting_Good_Background_1.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_2.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_3.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_4.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_MotoXPlay_Good_Lighting_Bad_Background_5.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_SamsungNote3_Bad_Lighting_Good_Background_6.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_10.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_7.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_8.png -------------------------------------------------------------------------------- /results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T2/truth/Alec_SamsungNote3_Good_Lighting_Bad_Background_9.png -------------------------------------------------------------------------------- /results/T3/accuracy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/accuracy.txt -------------------------------------------------------------------------------- /results/T3/labelled/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png -------------------------------------------------------------------------------- /results/T3/labelled/Alec-MotoXPlay-GoodLighting-Tpose_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Alec-MotoXPlay-GoodLighting-Tpose_3.png -------------------------------------------------------------------------------- /results/T3/labelled/Alec-SamsungNote3-GoodLighting-Tpose_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Alec-SamsungNote3-GoodLighting-Tpose_4.png -------------------------------------------------------------------------------- /results/T3/labelled/Alec-iPhone6-GoodLighting-Tpose_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Alec-iPhone6-GoodLighting-Tpose_1.png -------------------------------------------------------------------------------- /results/T3/labelled/Oliver-Nexus4-GoodLighting-Tpose_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Oliver-Nexus4-GoodLighting-Tpose_8.png -------------------------------------------------------------------------------- /results/T3/labelled/Oliver-SamsungNote3-GoodLighting-Tpose_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Oliver-SamsungNote3-GoodLighting-Tpose_9.png -------------------------------------------------------------------------------- /results/T3/labelled/Oliver-iPhone6-GoodLighting-Overhead_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Oliver-iPhone6-GoodLighting-Overhead_5.png -------------------------------------------------------------------------------- /results/T3/labelled/Oliver-iPhone6-GoodLighting-Tpose_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Oliver-iPhone6-GoodLighting-Tpose_2_6.png -------------------------------------------------------------------------------- /results/T3/labelled/Oliver-iPhone6-GoodLighting-Tpose_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Oliver-iPhone6-GoodLighting-Tpose_7.png -------------------------------------------------------------------------------- /results/T3/labelled/Robyn-Nexus4-GoodLighting-Tpose_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Robyn-Nexus4-GoodLighting-Tpose_13.png -------------------------------------------------------------------------------- /results/T3/labelled/Robyn-Nexus4-GoodLighting-Tpose_2_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Robyn-Nexus4-GoodLighting-Tpose_2_12.png -------------------------------------------------------------------------------- /results/T3/labelled/Robyn-iPhone6-GoodLighting-JumpingJack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Robyn-iPhone6-GoodLighting-JumpingJack_10.png -------------------------------------------------------------------------------- /results/T3/labelled/Robyn-iPhone6-GoodLighting-Tpose_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/labelled/Robyn-iPhone6-GoodLighting-Tpose_11.png -------------------------------------------------------------------------------- /results/T3/seg/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png -------------------------------------------------------------------------------- /results/T3/seg/Alec-MotoXPlay-GoodLighting-Tpose_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Alec-MotoXPlay-GoodLighting-Tpose_3.png -------------------------------------------------------------------------------- /results/T3/seg/Alec-SamsungNote3-GoodLighting-Tpose_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Alec-SamsungNote3-GoodLighting-Tpose_4.png -------------------------------------------------------------------------------- /results/T3/seg/Alec-iPhone6-GoodLighting-Tpose_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Alec-iPhone6-GoodLighting-Tpose_1.png -------------------------------------------------------------------------------- /results/T3/seg/Oliver-Nexus4-GoodLighting-Tpose_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Oliver-Nexus4-GoodLighting-Tpose_8.png -------------------------------------------------------------------------------- /results/T3/seg/Oliver-SamsungNote3-GoodLighting-Tpose_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Oliver-SamsungNote3-GoodLighting-Tpose_9.png -------------------------------------------------------------------------------- /results/T3/seg/Oliver-iPhone6-GoodLighting-Overhead_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Oliver-iPhone6-GoodLighting-Overhead_5.png -------------------------------------------------------------------------------- /results/T3/seg/Oliver-iPhone6-GoodLighting-Tpose_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Oliver-iPhone6-GoodLighting-Tpose_2_6.png -------------------------------------------------------------------------------- /results/T3/seg/Oliver-iPhone6-GoodLighting-Tpose_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Oliver-iPhone6-GoodLighting-Tpose_7.png -------------------------------------------------------------------------------- /results/T3/seg/Robyn-Nexus4-GoodLighting-Tpose_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Robyn-Nexus4-GoodLighting-Tpose_13.png -------------------------------------------------------------------------------- /results/T3/seg/Robyn-Nexus4-GoodLighting-Tpose_2_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Robyn-Nexus4-GoodLighting-Tpose_2_12.png -------------------------------------------------------------------------------- /results/T3/seg/Robyn-iPhone6-GoodLighting-JumpingJack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Robyn-iPhone6-GoodLighting-JumpingJack_10.png -------------------------------------------------------------------------------- /results/T3/seg/Robyn-iPhone6-GoodLighting-Tpose_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/seg/Robyn-iPhone6-GoodLighting-Tpose_11.png -------------------------------------------------------------------------------- /results/T3/test/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png -------------------------------------------------------------------------------- /results/T3/test/Alec-MotoXPlay-GoodLighting-Tpose_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Alec-MotoXPlay-GoodLighting-Tpose_3.png -------------------------------------------------------------------------------- /results/T3/test/Alec-SamsungNote3-GoodLighting-Tpose_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Alec-SamsungNote3-GoodLighting-Tpose_4.png -------------------------------------------------------------------------------- /results/T3/test/Alec-iPhone6-GoodLighting-Tpose_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Alec-iPhone6-GoodLighting-Tpose_1.png -------------------------------------------------------------------------------- /results/T3/test/Oliver-Nexus4-GoodLighting-Tpose_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Oliver-Nexus4-GoodLighting-Tpose_8.png -------------------------------------------------------------------------------- /results/T3/test/Oliver-SamsungNote3-GoodLighting-Tpose_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Oliver-SamsungNote3-GoodLighting-Tpose_9.png -------------------------------------------------------------------------------- /results/T3/test/Oliver-iPhone6-GoodLighting-Overhead_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Oliver-iPhone6-GoodLighting-Overhead_5.png -------------------------------------------------------------------------------- /results/T3/test/Oliver-iPhone6-GoodLighting-Tpose_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Oliver-iPhone6-GoodLighting-Tpose_2_6.png -------------------------------------------------------------------------------- /results/T3/test/Oliver-iPhone6-GoodLighting-Tpose_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Oliver-iPhone6-GoodLighting-Tpose_7.png -------------------------------------------------------------------------------- /results/T3/test/Robyn-Nexus4-GoodLighting-Tpose_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Robyn-Nexus4-GoodLighting-Tpose_13.png -------------------------------------------------------------------------------- /results/T3/test/Robyn-Nexus4-GoodLighting-Tpose_2_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Robyn-Nexus4-GoodLighting-Tpose_2_12.png -------------------------------------------------------------------------------- /results/T3/test/Robyn-iPhone6-GoodLighting-JumpingJack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Robyn-iPhone6-GoodLighting-JumpingJack_10.png -------------------------------------------------------------------------------- /results/T3/test/Robyn-iPhone6-GoodLighting-Tpose_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/test/Robyn-iPhone6-GoodLighting-Tpose_11.png -------------------------------------------------------------------------------- /results/T3/truth/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Alec-MotoXPlay-GoodLighting-Tpose_2_2.png -------------------------------------------------------------------------------- /results/T3/truth/Alec-MotoXPlay-GoodLighting-Tpose_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Alec-MotoXPlay-GoodLighting-Tpose_3.png -------------------------------------------------------------------------------- /results/T3/truth/Alec-SamsungNote3-GoodLighting-Tpose_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Alec-SamsungNote3-GoodLighting-Tpose_4.png -------------------------------------------------------------------------------- /results/T3/truth/Alec-iPhone6-GoodLighting-Tpose_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Alec-iPhone6-GoodLighting-Tpose_1.png -------------------------------------------------------------------------------- /results/T3/truth/Oliver-Nexus4-GoodLighting-Tpose_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Oliver-Nexus4-GoodLighting-Tpose_8.png -------------------------------------------------------------------------------- /results/T3/truth/Oliver-SamsungNote3-GoodLighting-Tpose_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Oliver-SamsungNote3-GoodLighting-Tpose_9.png -------------------------------------------------------------------------------- /results/T3/truth/Oliver-iPhone6-GoodLighting-Overhead_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Oliver-iPhone6-GoodLighting-Overhead_5.png -------------------------------------------------------------------------------- /results/T3/truth/Oliver-iPhone6-GoodLighting-Tpose_2_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Oliver-iPhone6-GoodLighting-Tpose_2_6.png -------------------------------------------------------------------------------- /results/T3/truth/Oliver-iPhone6-GoodLighting-Tpose_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Oliver-iPhone6-GoodLighting-Tpose_7.png -------------------------------------------------------------------------------- /results/T3/truth/Robyn-Nexus4-GoodLighting-Tpose_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Robyn-Nexus4-GoodLighting-Tpose_13.png -------------------------------------------------------------------------------- /results/T3/truth/Robyn-Nexus4-GoodLighting-Tpose_2_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Robyn-Nexus4-GoodLighting-Tpose_2_12.png -------------------------------------------------------------------------------- /results/T3/truth/Robyn-iPhone6-GoodLighting-JumpingJack_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Robyn-iPhone6-GoodLighting-JumpingJack_10.png -------------------------------------------------------------------------------- /results/T3/truth/Robyn-iPhone6-GoodLighting-Tpose_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/results/T3/truth/Robyn-iPhone6-GoodLighting-Tpose_11.png -------------------------------------------------------------------------------- /scripts/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/accuracy.py -------------------------------------------------------------------------------- /scripts/clahe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/clahe.py -------------------------------------------------------------------------------- /scripts/computeAccuracies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/computeAccuracies.py -------------------------------------------------------------------------------- /scripts/fcn_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/fcn_predict.py -------------------------------------------------------------------------------- /scripts/resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/resize.py -------------------------------------------------------------------------------- /scripts/segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/scripts/segment.py -------------------------------------------------------------------------------- /src/caffemodel-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/caffemodel-url -------------------------------------------------------------------------------- /src/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/deploy.prototxt -------------------------------------------------------------------------------- /src/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/net.png -------------------------------------------------------------------------------- /src/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/net.py -------------------------------------------------------------------------------- /src/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/solve.py -------------------------------------------------------------------------------- /src/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/solver.prototxt -------------------------------------------------------------------------------- /src/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/train.prototxt -------------------------------------------------------------------------------- /src/val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alec-ng/fully-convolutional-network-semantic-segmentation/HEAD/src/val.prototxt --------------------------------------------------------------------------------