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 select 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

The formula used by object filtering algorithms must be written in accordance with the custom formula syntax. The validity of the formula can be verified with the checkFilterFormula method.