skimage-tutorials
skimage-tutorials copied to clipboard
skimage-tutorials: a collection of tutorials for the scikit-image package.
Addresses some deprecation in and before v0.19 as well as other (minor) updates. We plan to use the lectures [00_images_are_arrays](https://github.com/scikit-image/skimage-tutorials/blob/main/lectures/00_images_are_arrays.ipynb), [1_image_filters](https://github.com/scikit-image/skimage-tutorials/blob/main/lectures/1_image_filters.ipynb) and [4_segmentation](https://github.com/scikit-image/skimage-tutorials/blob/main/lectures/4_segmentation.ipynb) so these are mainly tested and addressed...
Running jupyter-book build . with v0.13.0 fails with the following message: ``` The Table of Contents file is malformed: toc is not a mapping: You may need to migrate from...
This draft PR follows from the [discussion](https://github.com/scikit-image/skimage-tutorials/pull/59#issuecomment-994007174) in #59. To test this build system: ``` pip install -r requirements.txt make html ``` This is the standard `Makefile` you get from...
The provided command ic = io.ImageCollection('..\images\*.png:..\images\*.jpg') is not working in python 3.9 although an append of files is working by seprately reading two ic individually, enumerating the appended ic wont...
Closes #64 At least gets the jupyter-book workflow running. There are still failures in the build process, but it at least gets the build running. This is the result of...
The first step of `make html` is `pip install -q -r requirements.txt`, but unfortunately it is not currently possible to install the dependencies with pip due to conflicts in pip's...
I've attempted to build the site locally through various methods, including via the `Makefile` and with `jupyter-book`. So far, I haven't been successful with either approach. When I try to...
I propose to remove scripts using the skimage viewer.
As discussed [a couple months back](https://github.com/scikit-image/scikit-image/issues/2239) I've put together a tutorial on image moments from some notes for a particular project. I've put it in its own repo [here](https://github.com/lmmx/skimage-moments-tutorial/blob/master/Background-on-image-moments.ipynb) for...
We now have the tutorials up at https://scikit-image.org/skimage-tutorials/ To do: - [ ] use myst or a plain .py [format supported by jupytext](https://jupytext.readthedocs.io/en/latest/formats.html) rather than nb as source. This just...