├── LICENSE ├── README.md ├── data_preprocessing ├── pre_process_bsd500.py ├── pre_process_bsd500_ori_sz.py ├── test.txt ├── train.txt └── val.txt ├── datasets ├── BSD500.py ├── __init__.py ├── listdataset.py └── util.py ├── demo └── inputs │ ├── Lena.jpg │ ├── bedroom.jpg │ └── birds.jpg ├── eval_spixel ├── copy_resCSV.py ├── loadcsv.m ├── my_eval.sh └── plot_benchmark_curve.m ├── flow_transforms.py ├── loss.py ├── main.py ├── models ├── Spixel_single_layer.py ├── __init__.py └── model_util.py ├── nyu_test_set └── nyu_preprocess_tst.tar.gz ├── pretrain_ckpt └── SpixelNet_bsd_ckpt.tar ├── run_demo.py ├── run_infer_bsds.py ├── run_infer_nyu.py ├── third_party └── cython │ ├── connectivity.c │ ├── connectivity.pyx │ └── setup.py └── train_util.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/README.md -------------------------------------------------------------------------------- /data_preprocessing/pre_process_bsd500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/data_preprocessing/pre_process_bsd500.py -------------------------------------------------------------------------------- /data_preprocessing/pre_process_bsd500_ori_sz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/data_preprocessing/pre_process_bsd500_ori_sz.py -------------------------------------------------------------------------------- /data_preprocessing/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/data_preprocessing/test.txt -------------------------------------------------------------------------------- /data_preprocessing/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/data_preprocessing/train.txt -------------------------------------------------------------------------------- /data_preprocessing/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/data_preprocessing/val.txt -------------------------------------------------------------------------------- /datasets/BSD500.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/datasets/BSD500.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/datasets/__init__.py -------------------------------------------------------------------------------- /datasets/listdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/datasets/listdataset.py -------------------------------------------------------------------------------- /datasets/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/datasets/util.py -------------------------------------------------------------------------------- /demo/inputs/Lena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/demo/inputs/Lena.jpg -------------------------------------------------------------------------------- /demo/inputs/bedroom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/demo/inputs/bedroom.jpg -------------------------------------------------------------------------------- /demo/inputs/birds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/demo/inputs/birds.jpg -------------------------------------------------------------------------------- /eval_spixel/copy_resCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/eval_spixel/copy_resCSV.py -------------------------------------------------------------------------------- /eval_spixel/loadcsv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/eval_spixel/loadcsv.m -------------------------------------------------------------------------------- /eval_spixel/my_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/eval_spixel/my_eval.sh -------------------------------------------------------------------------------- /eval_spixel/plot_benchmark_curve.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/eval_spixel/plot_benchmark_curve.m -------------------------------------------------------------------------------- /flow_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/flow_transforms.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/loss.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/main.py -------------------------------------------------------------------------------- /models/Spixel_single_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/models/Spixel_single_layer.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from .Spixel_single_layer import * 2 | -------------------------------------------------------------------------------- /models/model_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/models/model_util.py -------------------------------------------------------------------------------- /nyu_test_set/nyu_preprocess_tst.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/nyu_test_set/nyu_preprocess_tst.tar.gz -------------------------------------------------------------------------------- /pretrain_ckpt/SpixelNet_bsd_ckpt.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/pretrain_ckpt/SpixelNet_bsd_ckpt.tar -------------------------------------------------------------------------------- /run_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/run_demo.py -------------------------------------------------------------------------------- /run_infer_bsds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/run_infer_bsds.py -------------------------------------------------------------------------------- /run_infer_nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/run_infer_nyu.py -------------------------------------------------------------------------------- /third_party/cython/connectivity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/third_party/cython/connectivity.c -------------------------------------------------------------------------------- /third_party/cython/connectivity.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/third_party/cython/connectivity.pyx -------------------------------------------------------------------------------- /third_party/cython/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/third_party/cython/setup.py -------------------------------------------------------------------------------- /train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fuy34/superpixel_fcn/HEAD/train_util.py --------------------------------------------------------------------------------