├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── RgbLab.cu ├── RgbLab.h ├── Superpixels.cpp ├── Superpixels.h ├── bfs_split.cpp ├── bfs_split.h ├── demo.cpp ├── demo_for_direc.cpp ├── gif ├── border_18.png ├── border_2.png ├── border_20.png ├── border_25.png ├── border_302003.png ├── border_alpha20.png ├── mean_126039.png ├── mean_18.png ├── mean_20.png ├── mean_25.png ├── mean_302003.png └── mean_alpha20.png ├── images ├── 126039.jpg ├── 302003.jpg └── 35028.jpg ├── include └── optionparser.h ├── init_seg.cu ├── init_seg.h ├── my_sp_struct.h ├── pytorch_version ├── BASS.py ├── Conn_Functions.py ├── Global.py ├── Help_Functions.py ├── LICENSE ├── README.md ├── gif │ ├── vis.gif │ └── vis_2.gif ├── lookup.npy └── requirements.txt ├── result ├── .~lock.results.csv# ├── .~lock.summary.csv# ├── 126039.csv ├── 302003.csv ├── 35028.csv ├── border_126039.png ├── border_302003.png ├── border_35028.png ├── mean_126039.png ├── mean_302003.png └── mean_35028.png ├── s_m.cu ├── s_m.h ├── sp.h ├── sp_helper.cu ├── sp_helper.h ├── split_merge.cpp ├── split_merge.h ├── update_param.cu ├── update_param.h ├── update_seg.cu ├── update_seg.h ├── utils.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | __pycache__/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/README.md -------------------------------------------------------------------------------- /RgbLab.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/RgbLab.cu -------------------------------------------------------------------------------- /RgbLab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/RgbLab.h -------------------------------------------------------------------------------- /Superpixels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/Superpixels.cpp -------------------------------------------------------------------------------- /Superpixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/Superpixels.h -------------------------------------------------------------------------------- /bfs_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/bfs_split.cpp -------------------------------------------------------------------------------- /bfs_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/bfs_split.h -------------------------------------------------------------------------------- /demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/demo.cpp -------------------------------------------------------------------------------- /demo_for_direc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/demo_for_direc.cpp -------------------------------------------------------------------------------- /gif/border_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_18.png -------------------------------------------------------------------------------- /gif/border_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_2.png -------------------------------------------------------------------------------- /gif/border_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_20.png -------------------------------------------------------------------------------- /gif/border_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_25.png -------------------------------------------------------------------------------- /gif/border_302003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_302003.png -------------------------------------------------------------------------------- /gif/border_alpha20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/border_alpha20.png -------------------------------------------------------------------------------- /gif/mean_126039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_126039.png -------------------------------------------------------------------------------- /gif/mean_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_18.png -------------------------------------------------------------------------------- /gif/mean_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_20.png -------------------------------------------------------------------------------- /gif/mean_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_25.png -------------------------------------------------------------------------------- /gif/mean_302003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_302003.png -------------------------------------------------------------------------------- /gif/mean_alpha20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/gif/mean_alpha20.png -------------------------------------------------------------------------------- /images/126039.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/images/126039.jpg -------------------------------------------------------------------------------- /images/302003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/images/302003.jpg -------------------------------------------------------------------------------- /images/35028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/images/35028.jpg -------------------------------------------------------------------------------- /include/optionparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/include/optionparser.h -------------------------------------------------------------------------------- /init_seg.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/init_seg.cu -------------------------------------------------------------------------------- /init_seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/init_seg.h -------------------------------------------------------------------------------- /my_sp_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/my_sp_struct.h -------------------------------------------------------------------------------- /pytorch_version/BASS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/BASS.py -------------------------------------------------------------------------------- /pytorch_version/Conn_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/Conn_Functions.py -------------------------------------------------------------------------------- /pytorch_version/Global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/Global.py -------------------------------------------------------------------------------- /pytorch_version/Help_Functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/Help_Functions.py -------------------------------------------------------------------------------- /pytorch_version/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/LICENSE -------------------------------------------------------------------------------- /pytorch_version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/README.md -------------------------------------------------------------------------------- /pytorch_version/gif/vis.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/gif/vis.gif -------------------------------------------------------------------------------- /pytorch_version/gif/vis_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/gif/vis_2.gif -------------------------------------------------------------------------------- /pytorch_version/lookup.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/lookup.npy -------------------------------------------------------------------------------- /pytorch_version/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/pytorch_version/requirements.txt -------------------------------------------------------------------------------- /result/.~lock.results.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/.~lock.results.csv# -------------------------------------------------------------------------------- /result/.~lock.summary.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/.~lock.summary.csv# -------------------------------------------------------------------------------- /result/126039.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/126039.csv -------------------------------------------------------------------------------- /result/302003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/302003.csv -------------------------------------------------------------------------------- /result/35028.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/35028.csv -------------------------------------------------------------------------------- /result/border_126039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/border_126039.png -------------------------------------------------------------------------------- /result/border_302003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/border_302003.png -------------------------------------------------------------------------------- /result/border_35028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/border_35028.png -------------------------------------------------------------------------------- /result/mean_126039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/mean_126039.png -------------------------------------------------------------------------------- /result/mean_302003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/mean_302003.png -------------------------------------------------------------------------------- /result/mean_35028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/result/mean_35028.png -------------------------------------------------------------------------------- /s_m.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/s_m.cu -------------------------------------------------------------------------------- /s_m.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/s_m.h -------------------------------------------------------------------------------- /sp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/sp.h -------------------------------------------------------------------------------- /sp_helper.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/sp_helper.cu -------------------------------------------------------------------------------- /sp_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/sp_helper.h -------------------------------------------------------------------------------- /split_merge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/split_merge.cpp -------------------------------------------------------------------------------- /split_merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/split_merge.h -------------------------------------------------------------------------------- /update_param.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/update_param.cu -------------------------------------------------------------------------------- /update_param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/update_param.h -------------------------------------------------------------------------------- /update_seg.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/update_seg.cu -------------------------------------------------------------------------------- /update_seg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/update_seg.h -------------------------------------------------------------------------------- /utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/utils.cpp -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BGU-CS-VIL/BASS/HEAD/utils.h --------------------------------------------------------------------------------