diff --git a/_pages/plugins/snt/analysis.md b/_pages/plugins/snt/analysis.md
index a45063425..fd8243229 100644
--- a/_pages/plugins/snt/analysis.md
+++ b/_pages/plugins/snt/analysis.md
@@ -231,6 +231,15 @@ In addition, SNT also implements descriptors based on persistence landscapes, as
Currently, _basic_ persistence homology descriptors can be computed using UI commands {% include bc path='Analysis|Persistence Homology...'%} (main interface), or {% include bc path='Analyze & Measure|Persistence Homology...'%} in [Rec. viewer](/plugins/snt/reconstruction-viewer). Complete extraction of descriptors can be obtained with [scripting](/plugins/snt/scripting). See e.g., the *Persistence Landscape* [notebook](https://github.com/morphonets/SNT/blob/main/notebooks/).
+# Delineation Analysis
+
+Delineations allow measuring proportions of recontructions within other structures defined by ROIs or neuropil annotations (e.g., cortical layers, biomarkers, or counterstaining landmarks). Some of the questions that delineation analyses can answer include:
+
+- Do branching patterns of neurons change along strata (cell layers)?
+- Do branches near a lesion site differ from branches further away from it?
+- Are there morphological differences across subregions of a neuron's receptive field?
+
+Delineations are described in [Walkthroughs › Delineation Analysis](/plugins/snt/walkthroughs#delineation-analysis).
# Root Angle Analysis
Root angle analysis measures the angular distribution of how far neurites deviate from a direct path to the soma (or rootof the neuronal arbor), a functional property that is captured by [Sholl profiles](#sholl-analysis). It quantifies properties such as [balancing factor](./metrics#root-angles-balancing-factor), [centripetal bias](./metrics#root-angles-centripetal-bias), and [mean direction](./metrics#root-angles-mean-direction). It is described in:
diff --git a/_pages/plugins/snt/key-shortcuts.md b/_pages/plugins/snt/key-shortcuts.md
index c5c87d057..99b37acca 100644
--- a/_pages/plugins/snt/key-shortcuts.md
+++ b/_pages/plugins/snt/key-shortcuts.md
@@ -112,7 +112,7 @@ See [sciview](/plugins/sciview)'s {% include bc path='Help| '%}menu for a full l
### Legacy 3D Viewer
-The most important shortcuts for the [Legacy 3D viewer](/plugins/snt/walkthroughs#legacy-3d-viewer) are:
+The most important shortcuts for the [Legacy 3D viewer](/plugins/snt/walkthroughs#tracing-in-the-legacy-3d-viewer) are:
| {% include key key='H' %} | Selects the Hand (pan) tool |
| {% include key key='W' %} | Selects the Wand (tracing) tool |
diff --git a/_pages/plugins/snt/manual.md b/_pages/plugins/snt/manual.md
index d7595717c..ee34275e5 100644
--- a/_pages/plugins/snt/manual.md
+++ b/_pages/plugins/snt/manual.md
@@ -483,6 +483,7 @@ The Legacy 3D Viewer is a functional tracing canvas and allows images to be trac
This tab hosts the Bookmark Manager, a utility that stores image locations to be (re)visited during tracing (e.g., a location of an ambiguous branching point or an ambiguous cross-over between two neurites). Bookmarked locations can also be used as [spine/varicosity markers](/plugins/snt/walkthroughs#spinevaricosity-analysis). The basic usage is as follows:
+
- Right-click on the image and choose {% include bc path='Bookmark Cursor Position' %} from the image contextual menu (shortcut: {% include key key='Shift|B' %}). A new bookmark will be added logging the cursor's X, Y, Z, C, T coordinates
@@ -496,6 +497,13 @@ This tab hosts the Bookmark Manager, a utility that stores image locations to be
- Use {% include bc path='Export...' %} to save the current list to either: 1) a CSV file, 2) ImageJ's ROI Manager or 3) the overlay of the active image. Note that when images are saved as TIFF, ROIs are saved in the file's header, and automatically loaded by ImageJ when the image is open.
+
+
+
+
+## Delineations Tab
+This tab hosts the Delineations Manager, a utility that allows measuring proportions of paths within other structures defined by ROIs or neuropil annotations (e.g., cortical layers, biomarkers, or counterstaining landmarks). Delineation analyses are described in detail in [Walkthroughs › Delineation Analysis](/plugins/snt/walkthroughs#delineation-analysis).
+
## Status Bar
The status bar at the bottom of the Main Dialog displays brief messages about ongoing operations. By default, the status bar reports the image title and the CT position being traced.
diff --git a/_pages/plugins/snt/metrics.md b/_pages/plugins/snt/metrics.md
index 020941054..c5ee14c32 100644
--- a/_pages/plugins/snt/metrics.md
+++ b/_pages/plugins/snt/metrics.md
@@ -81,11 +81,17 @@ The extent to which the [convex hull](#convex-hull) approaches a rectangle (if 2
###### Convex hull: Centroid-root distance
The distance between the root of a neuronal arbor and the centroid of its [convex hull](#convex-hull)
+###### Convex hull: Compactness
+The ratio between $$area^3/volume^2$$ of the 3D [convex hull](#convex-hull), normalized so that a sphere has a compactness value of 1. Defined in [Bribiesca E, 2008](https://doi.org/10.1016/j.patcog.2007.06.029). Not applicable to 2D convex hulls. Range of values: 0--1 (unitless)
+
+###### Convex hull: Eccentricity
+Defined as $$\sqrt{1 - \left(\frac{b}{a}\right)^2}$$, where $$a$$ and $$b$$ are the semi-major and semi-minor axes of the 2D [convex hull](#convex-hull). Not applicable to 3D Convex hulls. An eccentricity of 0 corresponds to a perfect circle. An eccentricity close to 1 indicates a highly elongated ellipse. Unitless
+
###### Convex hull: Elongation
-The [caliper (also known as Feret) diameter](https://en.wikipedia.org/wiki/Feret_diameter) of the [convex hull](#convex-hull)
+The [caliper (Feret) diameter](https://en.wikipedia.org/wiki/Feret_diameter) of the [convex hull](#convex-hull)
###### Convex hull: Roundness
-The extent to which the [convex hull](#convex-hull) approaches a circle (2D) or a sphere (3D). Range of values: 0--1 (unitless)
+The extent to which the [convex hull](#convex-hull) approaches a circle (i.e., circularity in 2D) or a sphere (i.e., sphericity in 3D). Range of values: 0--1 (unitless)
###### Convex hull: Size
Either the area of the 2D polygon, or the volume of the 3D polyhedron defining the [convex hull](#convex-hull)
diff --git a/_pages/plugins/snt/walkthroughs.md b/_pages/plugins/snt/walkthroughs.md
index 3aa6c3eae..0854a7d95 100644
--- a/_pages/plugins/snt/walkthroughs.md
+++ b/_pages/plugins/snt/walkthroughs.md
@@ -143,6 +143,7 @@ Accurate node placement requires XY, ZY and XZ views
+
## Tracing in the Legacy 3D Viewer
The legacy 3D Viewer allows for tracing in an interactive 3D scene.
@@ -291,7 +292,7 @@ NB:
# Time-lapse analysis
{% capture timelapse-demo%}
-There are two demo datasets ({% include bc path='File|Load Demo Dataset...' %}) you can use to follow these instructions:
+You can use one of two demo datasets ({% include bc path='File|Load Demo Dataset...' %}) to follow these instructions:
- _Hippocampal neuron (DIC timelapse)_ dataset: A timelapse video of a cultured neuron in which neurites have been pre-traced across time
- _Segmented video (2D timelapse)_ dataset: A small, thresholded video of a cultured neuron processed by a script that automates tracing at each frame
{% endcapture %}
@@ -445,6 +446,76 @@ Currently, only the output images/CSV summary of fills can be exported. TRACES f
{% endcapture %}
{% include notice icon="info" content=text %}
+# Delineation Analysis
+Delineations aggregate sections of reconstructions into groups to allow measuring proportions of paths within other structures defined by ROIs or neuropil annotations (e.g., cortical layers, biomarkers, or counterstaining landmarks). Delineation analyses can be applied to disconnected paths, a single cell, or multiple cells. Some of the questions that delineation analyses can answer include:
+
+- Do branching patterns of neurons change along strata (cell layers)?
+- What is the total dendritic/axonal length contained within a cortical layer?
+- Do branches near a lesion site differ from branches further away from it?
+- Are there morphological differences across subregions of a neuron's receptive field?
+
+{% capture ml-demo %}
+You can use the _MouseLight dendrites_ demo dataset to follow the delineation tutorials. While this dataset does not include counterstaining images, it can still be used for both ROI-based and Atlas-based delineations:
+
+1. Open {% include bc path='File|Load Demo Dataset...' %} and choose _MouseLight dendrites (Reconstructions only)_
+2. Right-click on the _Display Canvas_ and choose _Pause SNT_ from the contextual menu
+3. Follow the instructions below
+{% endcapture %}
+{% include notice icon="info" content=ml-demo %}
+
+