Análise de Sholl
Análise de Sholl
This is a plugin for ImageJ that automates the task of doing Sholl analysis on a neuron.
Its internal algorithm is based upon how Sholl analysis is done by hand – it creates a
series of concentric circles around the soma of the neuron, and counts how many times
the neuron intersects with the circumference of these circles. However, since it can do
this process repeatedly, and in a relatively short amount of time, it allows for new
possibilities with the analysis that would be too tedious to be done manually.
There are two files that constitute the Sholl analysis plugin: ShollAnalysis_.class and
ShollAnalysis_.java. The .class file contains the actual plugin code that ImageJ runs, and
as such, it is required for the plugin to work. The .java file contains the human-readable
source code for the plugin, and is therefore optional. Those with a curiosity for seeing
how the code works or for making changes to the plugin may be interested in obtaining
and installing the .java file along with the .class file, but all that is necessary for the
plugin to work is the .class file. These files belong in the aforementioned plugins folder
within the ImageJ application folder.
When the plugin displays its options dialog box, it shows the current scale information at
the top, to allow the user to ensure it is correct before continuing with the analysis. If it is
not, then the user must cancel the dialog box and fix the scale before continuing.
Step 1: Use the point selection tool to select a point on the image. This point will be
the center of all of the analysis circles that will be sampled. Ideally, it should
be placed in the center of the soma for the best results.
Step 3: Set the analysis parameters in the resulting dialog box and click “OK”. Note
that all values are in the units of length displayed at the top (i.e. microns).
Details about the meaning of each analysis parameter are described below:
Starting Radius: The radius of the smallest analysis circle, along which the #
of intersections will be measured.
Ending Radius: The maximum value for the radii of the analysis circles.
This does not necessarily mean there will be an analysis
circle with this radius value. All it means is that no
analysis circles will have radii greater than this value.
Radius Step Size: The interval between radii of consecutive analysis circles.
This value may be set to zero for continuous intersections
measurements.
Radius Span: The margin around each radius value in which continuous
intersection measurements are made. These measurements
are then combined to calculate a single value for the # of
intersections at that radius. This is a break from traditional
Sholl analysis, since the intersections are being counted in
an area around the circumference of each analysis circle,
instead of only along the circumference. This value may be
set to zero to disable the span feature, in which case only
one intersection measurement is made for each analysis
circle along its circumference.
Span Type: The statistical function used to combine intersection
measurements within a span to produce a single value.
Options are mean or median.
Starting Radius
Step 4: Save the results, which can be done in many ways. The user can chose to save
the resulting graph as a picture file by going to the “File” menu and selecting
the “Save” option while the graph window is selected. Or the raw data from
the analysis can be saved to a text file by clicking the “Save…” button on the
graph window. The raw data can also be copied to the system clipboard by
clicking the “Copy…” button on the graph window. Common spreadsheet
programs can import the raw data directly from the saved text file or from the
clipboard, to be used in further analysis.
Release Information