├── .gitignore ├── Makefile ├── README.md ├── img ├── 30_all_mser.pdf ├── 30_selected_mser.pdf ├── 3599_5_maskedXY.png ├── 3599_5_maskedXZ.png ├── 3599_5_probaXY.png ├── 3599_5_probaXZ.png ├── 3599_probabeforeCRFXY.png ├── 3599_probabeforeCRFXZ.png ├── 3599_reconstructedXY.png ├── 3599_reconstructedXZ.png ├── XY_plane_all.pdf ├── brain.png ├── maskY.pdf ├── maskZ.pdf ├── mser │ ├── 1.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ └── 5.png ├── plot2.pdf ├── white_2628_maskingXY.png ├── white_2628_maskingXZ.png ├── white_2628_nomaskingXY.png ├── white_2628_nomaskingXZ.png ├── white_890_11XZ.png ├── white_890_11YZ.png ├── white_890_1XY.png ├── white_890_1XZ.png ├── white_890_7XY.png ├── white_890_7XZ.png ├── white_890_maskingXY.png └── white_890_maskingXZ.png ├── montage.png ├── presentation.pdf ├── presentation.tex └── scripts ├── plot.py ├── plot1.pdf ├── plot2.pdf └── xkcdplot.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/README.md -------------------------------------------------------------------------------- /img/30_all_mser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/30_all_mser.pdf -------------------------------------------------------------------------------- /img/30_selected_mser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/30_selected_mser.pdf -------------------------------------------------------------------------------- /img/3599_5_maskedXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_5_maskedXY.png -------------------------------------------------------------------------------- /img/3599_5_maskedXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_5_maskedXZ.png -------------------------------------------------------------------------------- /img/3599_5_probaXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_5_probaXY.png -------------------------------------------------------------------------------- /img/3599_5_probaXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_5_probaXZ.png -------------------------------------------------------------------------------- /img/3599_probabeforeCRFXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_probabeforeCRFXY.png -------------------------------------------------------------------------------- /img/3599_probabeforeCRFXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_probabeforeCRFXZ.png -------------------------------------------------------------------------------- /img/3599_reconstructedXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_reconstructedXY.png -------------------------------------------------------------------------------- /img/3599_reconstructedXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/3599_reconstructedXZ.png -------------------------------------------------------------------------------- /img/XY_plane_all.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/XY_plane_all.pdf -------------------------------------------------------------------------------- /img/brain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/brain.png -------------------------------------------------------------------------------- /img/maskY.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/maskY.pdf -------------------------------------------------------------------------------- /img/maskZ.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/maskZ.pdf -------------------------------------------------------------------------------- /img/mser/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/mser/1.png -------------------------------------------------------------------------------- /img/mser/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/mser/2.png -------------------------------------------------------------------------------- /img/mser/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/mser/3.png -------------------------------------------------------------------------------- /img/mser/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/mser/4.png -------------------------------------------------------------------------------- /img/mser/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/mser/5.png -------------------------------------------------------------------------------- /img/plot2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/plot2.pdf -------------------------------------------------------------------------------- /img/white_2628_maskingXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_2628_maskingXY.png -------------------------------------------------------------------------------- /img/white_2628_maskingXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_2628_maskingXZ.png -------------------------------------------------------------------------------- /img/white_2628_nomaskingXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_2628_nomaskingXY.png -------------------------------------------------------------------------------- /img/white_2628_nomaskingXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_2628_nomaskingXZ.png -------------------------------------------------------------------------------- /img/white_890_11XZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_11XZ.png -------------------------------------------------------------------------------- /img/white_890_11YZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_11YZ.png -------------------------------------------------------------------------------- /img/white_890_1XY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_1XY.png -------------------------------------------------------------------------------- /img/white_890_1XZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_1XZ.png -------------------------------------------------------------------------------- /img/white_890_7XY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_7XY.png -------------------------------------------------------------------------------- /img/white_890_7XZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_7XZ.png -------------------------------------------------------------------------------- /img/white_890_maskingXY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_maskingXY.png -------------------------------------------------------------------------------- /img/white_890_maskingXZ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/img/white_890_maskingXZ.png -------------------------------------------------------------------------------- /montage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/montage.png -------------------------------------------------------------------------------- /presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/presentation.pdf -------------------------------------------------------------------------------- /presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/presentation.tex -------------------------------------------------------------------------------- /scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/scripts/plot.py -------------------------------------------------------------------------------- /scripts/plot1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/scripts/plot1.pdf -------------------------------------------------------------------------------- /scripts/plot2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/scripts/plot2.pdf -------------------------------------------------------------------------------- /scripts/xkcdplot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevin-keraudren/xkcd-beamer/HEAD/scripts/xkcdplot.py --------------------------------------------------------------------------------