ImageDev

Individual Measurements

Analysis algorithms applying a measurement on each label of the input image.
For an introduction: Image Analysis

Most of these algorithms have a field to set one or several input measurements.

Filtering objects in an image

The object filtering algorithms remove or preserve shapes from a binary or label image according to measurement criteria.

The following algorithms filter an image with a criterion defined in a formula:
For example, to define a filter preserving particles having a diameter lower than 50, in the coordinate system defined by the image calibration, in C#:
      labelFilter.inputFilter = NativeMeasurements.EqDiameter.name + "< 50"
      

Custom Formula syntax

A custom formula syntax is checked by several ImageDev algorithms: Custom measurement formula and custom filter formula follow the same basic rules and can use the same set of predefined functions. Custom measurement formula must be a numerical value, whereas custom filter formula must be a logical value to be accepted.
Formula can be composed of constants, operators, functions, and variables (native measurements and custom measurements).

Remarks: The following syntax can be used to define a formula:

Basic operators

Constant values

Functions