diff --git a/doc/source/user_guide.txt b/doc/source/user_guide.txt index c4e7a8ff..b262581c 100644 --- a/doc/source/user_guide.txt +++ b/doc/source/user_guide.txt @@ -2,8 +2,8 @@ User Guide ========== .. toctree:: - :maxdepth: 1 + :maxdepth: 2 user_guide/data_types - user_guide/segmentation user_guide/plugins + user_guide/tutorials diff --git a/doc/source/user_guide/elevation_map.jpg b/doc/source/user_guide/data/elevation_map.jpg similarity index 100% rename from doc/source/user_guide/elevation_map.jpg rename to doc/source/user_guide/data/elevation_map.jpg diff --git a/doc/source/user_guide/segmentation.txt b/doc/source/user_guide/tutorial_segmentation.txt similarity index 99% rename from doc/source/user_guide/segmentation.txt rename to doc/source/user_guide/tutorial_segmentation.txt index 657ed8c4..eda202d9 100644 --- a/doc/source/user_guide/segmentation.txt +++ b/doc/source/user_guide/tutorial_segmentation.txt @@ -114,9 +114,9 @@ use the Sobel operator for computing the amplitude of the gradient:: From the 3-D surface plot shown below, we see that high barriers effectively separate the coins from the background. -.. image:: elevation_map.jpg +.. image:: data/elevation_map.jpg :align: center - + Let us now compute the watershed transform:: >>> from skimage.morphology import watershed diff --git a/doc/source/user_guide/tutorials.txt b/doc/source/user_guide/tutorials.txt new file mode 100644 index 00000000..be724a63 --- /dev/null +++ b/doc/source/user_guide/tutorials.txt @@ -0,0 +1,7 @@ +Tutorials +========= + +.. toctree:: + :maxdepth: 1 + + tutorial_segmentation