Objects & Metrics
An object is the result of an image classification step. It represents a quantified region of interest (ROI) extracted from an image plane and stored in the results database.
Every object is assigned to exactly one object class. Together with the class assignment, a set of geometric, intensity, and relational metrics is calculated and stored - visible in the results table and exportable to CSV or XLSX.
Geometric Metrics
Section titled “Geometric Metrics”These describe an object’s shape, size, and position - useful for telling apart, for example, a round healthy nucleus from a fragmented apoptotic one, or a compact vesicle from a smeared imaging artifact.
Area Size
Section titled “Area Size”The count of pixels inside the object’s mask. Unit: px². The most basic size measure - used for everything from filtering out noise-sized specks to comparing cell sizes across conditions.
Perimeter
Section titled “Perimeter”The boundary length of the object, following ImageJ’s boundary-walk algorithm: for every mask pixel, an orthogonal (up/down/left/right) neighbor that’s background contributes 1, and a diagonal neighbor that’s background contributes . Since every boundary contact is counted from both sides, the total is halved:
A jagged, spiky boundary racks up far more of these steps than a smooth one enclosing the same area - which is exactly what Circularity below exploits.
Circularity
Section titled “Circularity”How closely the object resembles a circle, from its area and perimeter. Range: 0 (very irregular) to 1 (perfect circle). A circle is the shape that encloses the most area for the least perimeter, so anything jagged, elongated, or branching scores lower.
Useful for spotting membrane blebbing, fragmented nuclei, or aggregated/clumped particles that should otherwise be round.
Roundness
Section titled “Roundness”Computed identically to Circularity in the current implementation - same formula, same interpretation:
Compactness
Section titled “Compactness”The reciprocal relationship to Circularity - lower means more compact (closer to a circle), higher means more perimeter for the enclosed area (more irregular):
Circularity and Compactness describe the same underlying shape property from opposite ends - if you’re used to thinking “bigger number = more irregular,” Compactness reads more naturally than Circularity’s “bigger number = more circular.”
Solidity
Section titled “Solidity”Area divided by the area of the mask’s convex hull (taken over the corners of its pixel squares, so the mask is always fully contained in its hull). Range: 0-1; 1 = perfectly convex, lower means more concave boundaries, bays, or holes.
Where Circularity penalizes any deviation from round (including smooth elongation), Solidity specifically flags concave indentations - think of a crescent-shaped nucleus, a cell mid-division, or two touching objects that didn’t get fully separated by segmentation.
Aspect Ratio
Section titled “Aspect Ratio”The ratio of the fitted ellipse’s major to minor axis (see Eccentricity for how the ellipse is fitted) - not the bounding box’s width/height ratio. 1.0 means the object is as wide as it is long; larger values mean it’s elongated along one axis.
Handy for telling round objects (nuclei, vesicles) apart from rod- or fiber-like ones (some bacteria, cytoskeletal fragments) regardless of which way they happen to be rotated in the image.
Eccentricity
Section titled “Eccentricity”Elongation of the object’s fitted ellipse (0 = circle, approaching 1 = increasingly elongated - a flattened sliver). It answers the same “how stretched is this object?” question as Aspect Ratio, just on a bounded 0-1 scale instead of an open-ended ratio, which can make it easier to set a filter threshold in Classify ROIs.
The ellipse is fitted from the mask’s second-order central moments - a standard way of asking “if I approximated this exact pixel mask with the closest-fitting ellipse, how big would its axes be?”:
Feret Diameter
Section titled “Feret Diameter”The diagonal of the object’s axis-aligned bounding box - an approximation of the true maximum caliper diameter (the longest distance between any two points on the boundary), not a rotating-calipers measurement. For an object at an angle to the pixel grid, this can overstate the true longest axis - keep that in mind when comparing it against a textbook Feret diameter from another tool.
Min Feret Diameter
Section titled “Min Feret Diameter”The minor axis length of the fitted ellipse described under Eccentricity - an approximation of the true minimum caliper width (the object’s narrowest extent).
Center of Mass (Centroid)
Section titled “Center of Mass (Centroid)”Despite the name, this is the center of the bounding box, not an area- or intensity-weighted centroid. For round or symmetric objects the two coincide almost exactly, but for an L-shaped, crescent, or otherwise asymmetric mask, the bounding-box center can sit outside the mask entirely, while the true centroid always stays inside it. Keep this in mind if you’re using this value for precise spatial analysis rather than just a rough object position for a heatmap or navigator.
Bounding Box
Section titled “Bounding Box”The smallest axis-aligned rectangle that contains all pixels of the object.
Intensity Metrics
Section titled “Intensity Metrics”Calculated independently for each image channel/plane configured in the Classify ROIs step, over the pixels of the object’s mask - the actual signal being measured, as opposed to the shape metrics above:
Sum and Avg are the two most commonly used: Sum scales with both signal strength and object size (useful for “total protein content”-style questions), while Avg is size-independent (useful for comparing concentration/intensity regardless of how big the object is). Min/Max are useful for spotting saturation (Max pinned at the sensor’s ceiling) or partially-masked/background-contaminated objects (unexpectedly low Min).
Object Identifiers
Section titled “Object Identifiers”Object ID
Section titled “Object ID”A unique integer ID assigned to each object during a run, starting at 1. The ID is consistent within a single results file and is displayed in the results table when enabled.
Use the With object ID option in Save Image to annotate the ID alongside the object in control images.
Parent Object ID
Section titled “Parent Object ID”EVAnalyzer supports a parent-child hierarchy between objects. When Classify ROIs or Colocalization is configured to intersect objects, the parent object ID of the child is set to the object ID of the containing parent.
An object can have at most one parent.
Example hierarchy:
- A cell object contains a nucleus.
- The nucleus’s parent object ID is the cell’s object ID.
- A spot inside the nucleus has the nucleus’s object ID as its parent.
Origin Object ID
Section titled “Origin Object ID”When an object is duplicated (via a copy operation in Classify ROIs or Colocalization), the new object records the origin object’s ID. The origin ID propagates through further duplications.
Tracking ID
Section titled “Tracking ID”Links objects that represent the same physical instance across different image channels or time frames. All objects sharing a tracking ID can be compared side by side in the results table.
Tracking IDs are assigned by the Colocalization command.
Distance Metrics
Section titled “Distance Metrics”EVAnalyzer calculates Euclidean distances between pairs of objects - for questions like “how far is this vesicle from the nearest cell membrane?” where a simple overlap/no-overlap answer isn’t enough:
| Measurement | Description |
|---|---|
| Centre-to-centre | Distance between the two centroids |
| Centre-to-surface (min) | Shortest distance from one centroid to the other object’s boundary |
| Centre-to-surface (max) | Longest distance from one centroid to the other object’s boundary |
| Surface-to-surface (min) | Shortest distance between the two boundaries |
| Surface-to-surface (max) | Longest distance between the two boundaries |
Centre-to-centre is the simplest and cheapest to compute, but for large or irregularly-shaped objects it can be misleading - two large cells whose edges nearly touch can still have distant centroids. Surface-to-surface (min) answers “how close do these objects actually get?” instead.
See Distance Transform for how to measure distances.
Intersection Count
Section titled “Intersection Count”The number of objects from another class that overlap with this object. Used as a filter criterion in Classify ROIs and as input to Colocalization.
Colocalization Partner Count / IDs
Section titled “Colocalization Partner Count / IDs”Per colocalization partner class: how many of that class’s objects this object colocalises with, and their object IDs. See Colocalization.