-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
32 changed files
with
60 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,28 @@ | ||
.PHONY: clean html | ||
.PHONY: clean book | ||
|
||
.DEFAULT_GOAL = book | ||
|
||
NB_DIR = modules | ||
EXEC_NB_DIR = book/_modules | ||
|
||
MARKDOWNS = $(wildcard $(NB_DIR)/*.md) | ||
NOTEBOOKS = $(patsubst $(NB_DIR)/%.md, $(EXEC_NB_DIR)/%.ipynb, $(MARKDOWNS)) | ||
|
||
_requirements.installed: | ||
pip install -q -r requirements.txt | ||
touch _requirements.installed | ||
|
||
book: _requirements.installed | ||
$(EXEC_NB_DIR): | ||
mkdir book/_modules | ||
|
||
$(EXEC_NB_DIR)/%.ipynb:$(NB_DIR)/%.md $(EXEC_NB_DIR) | ||
@# Jupytext will also catch and print execution errors | ||
@# unless a cell is marked with the `raises-exception` tag | ||
jupytext --execute --to ipynb --output $@ $< | ||
|
||
book: _requirements.installed $(NOTEBOOKS) | ||
@export SPHINXOPTS=-W; make -C book html | ||
|
||
clean: | ||
rm -rf book/_build | ||
make -C book clean | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# scikit-image applications | ||
|
||
A collection of tutorials highlighting the use of scikit-image for applications in science. | ||
|
||
```{toctree} | ||
--- | ||
maxdepth: 1 | ||
--- | ||
_modules/adv0_chromosomes.md | ||
_modules/adv1_lesion-quantification.md | ||
_modules/adv2_microarray.md | ||
_modules/adv3_panorama_stitching.md | ||
_modules/adv4_warping.md | ||
_modules/adv5_pores.md | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file was deleted.
Oops, something went wrong.