├── .gitignore ├── CMakeLists.txt ├── COPYING ├── ParseArgv.c ├── ParseArgv.h ├── README ├── README.library ├── alloc.c ├── array_alloc.h ├── basic.h ├── beast.h ├── beast_lib.c ├── conf ├── default.1mm.conf ├── default.2mm.conf └── default.4mm.conf ├── config.h.cmake ├── distance_patch.c ├── label.c ├── label.h ├── minc2nifti.c ├── mincbeast.c ├── mincio.c ├── mincio.h ├── moments.c ├── niftiio.c ├── niftiio.h ├── nlm_utils.c ├── nlmfilter.c ├── nlmseg.h ├── nlmsegFuzzy.c └── scripts ├── CMakeLists.txt ├── beast_normalize └── beast_prepareADNIlib /.gitignore: -------------------------------------------------------------------------------- 1 | # backup files 2 | *~ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/COPYING -------------------------------------------------------------------------------- /ParseArgv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/ParseArgv.c -------------------------------------------------------------------------------- /ParseArgv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/ParseArgv.h -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/README -------------------------------------------------------------------------------- /README.library: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/README.library -------------------------------------------------------------------------------- /alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/alloc.c -------------------------------------------------------------------------------- /array_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/array_alloc.h -------------------------------------------------------------------------------- /basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/basic.h -------------------------------------------------------------------------------- /beast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/beast.h -------------------------------------------------------------------------------- /beast_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/beast_lib.c -------------------------------------------------------------------------------- /conf/default.1mm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/conf/default.1mm.conf -------------------------------------------------------------------------------- /conf/default.2mm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/conf/default.2mm.conf -------------------------------------------------------------------------------- /conf/default.4mm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/conf/default.4mm.conf -------------------------------------------------------------------------------- /config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/config.h.cmake -------------------------------------------------------------------------------- /distance_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/distance_patch.c -------------------------------------------------------------------------------- /label.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/label.c -------------------------------------------------------------------------------- /label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/label.h -------------------------------------------------------------------------------- /minc2nifti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/minc2nifti.c -------------------------------------------------------------------------------- /mincbeast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/mincbeast.c -------------------------------------------------------------------------------- /mincio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/mincio.c -------------------------------------------------------------------------------- /mincio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/mincio.h -------------------------------------------------------------------------------- /moments.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/moments.c -------------------------------------------------------------------------------- /niftiio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/niftiio.c -------------------------------------------------------------------------------- /niftiio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/niftiio.h -------------------------------------------------------------------------------- /nlm_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/nlm_utils.c -------------------------------------------------------------------------------- /nlmfilter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/nlmfilter.c -------------------------------------------------------------------------------- /nlmseg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/nlmseg.h -------------------------------------------------------------------------------- /nlmsegFuzzy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/nlmsegFuzzy.c -------------------------------------------------------------------------------- /scripts/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/scripts/CMakeLists.txt -------------------------------------------------------------------------------- /scripts/beast_normalize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/scripts/beast_normalize -------------------------------------------------------------------------------- /scripts/beast_prepareADNIlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BIC-MNI/BEaST/HEAD/scripts/beast_prepareADNIlib --------------------------------------------------------------------------------