├── README.md ├── binary_segmentation.ipynb ├── factor_graph_denoising.png ├── factor_graph_messages.png ├── grains_automatic_segmentation.png ├── grains_crop.png ├── images ├── grains_automatic_segmentation.png ├── grains_crop.png └── mayavi_screenshot.png ├── indices_markers.npy ├── requirements.txt ├── segmentation_grains_part1.ipynb └── tomo_segmentation.ipynb /README.md: -------------------------------------------------------------------------------- 1 | # image-processing-tutorials 2 | -------------------------------------------------------------------------------- /factor_graph_denoising.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/factor_graph_denoising.png -------------------------------------------------------------------------------- /factor_graph_messages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/factor_graph_messages.png -------------------------------------------------------------------------------- /grains_automatic_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/grains_automatic_segmentation.png -------------------------------------------------------------------------------- /grains_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/grains_crop.png -------------------------------------------------------------------------------- /images/grains_automatic_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/images/grains_automatic_segmentation.png -------------------------------------------------------------------------------- /images/grains_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/images/grains_crop.png -------------------------------------------------------------------------------- /images/mayavi_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/images/mayavi_screenshot.png -------------------------------------------------------------------------------- /indices_markers.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emmanuelle/image-processing-tutorials/bf7e769edf2dccf68d09cc9cc88686a1f18cbd8d/indices_markers.npy -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy>=1.11 2 | scipy>=0.17.0 3 | matplotlib>=1.3.1 4 | scikit-image>=0.12 5 | --------------------------------------------------------------------------------