| Customize Help

Verifying beads and retrieving results



Once you have successfully trained the bead templates, you can verify them against their corresponding measured beads in a target image, using MbeadVerify(). By default, to pass verification, each trained point in a template must have a corresponding measured point that was successfully found in its measured bead.

After calling MbeadVerify(), the main result you will typically be interested in is M_STATUS, which returns whether MIL considers the measured beads (one or all) or the measured points (one or all) to have passed or failed verification. You can also retrieve more specific status results, such as whether a bead's width at a specific point has passed or failed the maximum width setting (M_STATUS_WIDTH_MAX). Such results can help you ascertain why the bead's general status (M_STATUS) is failing. For more information, see the Status and other results subsection of this section.

You can affect the verification process and the results it calculates by modifying the verification settings using MbeadControl() before calling MbeadVerify(). For example, you can use M_ACCEPTANCE to lower the percentage of trained points that must have a corresponding measured point (found point) in the target image for the bead to have a passing status.

Note that you can only modify foreground, smoothness, and threshold settings during the training phase; for more information, see the relevant subsections in the Defining, training, and modifying bead templates section earlier in this chapter.

MIL interprets certain verification input values related to position and dimension type settings (such as M_OFFSET_MAX) in either pixel or world units. To set the units, use MbeadControl() with M_TEMPLATE_INPUT_UNITS. This essentially establishes the input coordinate system to use. If MIL interprets input settings in world units and you don't use a calibrated target image, MbeadVerify() generates an error.

Score and acceptance

The score refers to the percentage of trained points that have a corresponding measured point with a passing status (M_STATUS), relative to the total number of trained points in the template. For every measured point with a failing status (not found), MIL lowers the bead's score proportionally. For example, if a bead template has 100 trained points and 69 are found to have a passing status, MIL returns a score of 69% for the measured bead.

Many reasons can cause a point to have a failing status. It can, for example, fall outside the boundaries of the search box, or its corresponding bead width can be lower than the specified value.

To specify the minimum score you're willing to accept for the template's corresponding measured bead to have a passing status, use the M_ACCEPTANCE control. To retrieve whether the measured bead's score has itself passed (is greater than or equal to) or failed (is less than) the acceptance set, use M_STATUS_SCORE. If the requirements of M_ACCEPTANCE are not met or surpassed by the score of the measured bead, its main status result (M_STATUS) will fail, regardless of any other setting.

To get the score of the template's corresponding measured bead, as well as the number of trained points that have a corresponding measured point, call MbeadGetResult() with M_SCORE and M_NUMBER_FOUND, respectively.

Gaps

A gap refers to a section of the measured bead that corresponds to a single trained point, or to a set of consecutive trained points, that were expected but not found during verification. By default, a measured bead is expected to be gap free.

To manage the extent to which you are willing to accept gaps during verification, you can use MbeadControl() to set the:

  • Maximum allowable length of any one gap in the measured bead (M_GAP_MAX_LENGTH). For a measured bead to have a passing status result (M_STATUS), it cannot have a gap that is longer than M_GAP_MAX_LENGTH, regardless of any other setting. To retrieve the actual length of the longest gap result, use M_GAP_MAX_LENGTH.

  • Total allowable gap (all gaps together) in the measured bead (M_GAP_TOLERANCE). For a measured bead to have a passing status result (M_STATUS), the total combined length of all gaps in the measured bead, relative to the full length of the expected measured bead, must be less than M_GAP_TOLERANCE, regardless of any other setting. To retrieve the actual percentage of the total length of all gaps in the measured bead result, use M_GAP_COVERAGE.

The following example illustrates two beads, each 50 units long. M_GAP_MAX_LENGTH is set to 10 units and M_GAP_TOLERANCE is set to 50%. The first bead fails because it has a gap with a length that is greater than 10 units. The second bead passes because there is no gap with a length greater than 10 units, and the total length of all gaps is less than 50% of the bead's length.

To retrieve whether the gaps in the measured bead have themselves passed (are less than or equal to) or failed (are greater than) the gap constraints, use MbeadGetResult() with M_STATUS_GAP_MAX or M_STATUS_GAP_TOLERANCE.

Search box

The search box is the area along the bead in the target image in which to find each trained point's corresponding measured point, when you call MbeadVerify(). To retrieve whether MIL has found a trained point's associated measured point, use M_STATUS_FOUND. You can also use this result to retrieve whether the entire measured bead was found. For more information, see the Status and other results subsection of this section.

MIL bases the search box's height, width, and spacing on the trained box established during training (MbeadInquire() with M_TRAINED_BOX_HEIGHT, M_TRAINED_BOX_WIDTH, and M_TRAINED_BOX_SPACING). For verification, you can increase the width of the search box by adding margins to the width of the trained box, using M_BOX_WIDTH_MARGIN.

You must specify the margin as a percentage of the trained nominal width of the bead template, which you can inquire with M_TRAINED_WIDTH_NOMINAL. MIL calculates the width of the search box as: SearchBoxWidthForVerification = M_TRAINED_BOX_WIDTH + (M_TRAINED_WIDTH_NOMINAL x M_BOX_WIDTH_MARGIN).

For example, if the trained box width (M_TRAINED_BOX_WIDTH) is 100 pixels, the trained nominal width (M_TRAINED_WIDTH_NOMINAL) is 60 pixels, and the specified margin (M_BOX_WIDTH_MARGIN) for the search box of the bead template is 50%, the width of the search box is 130 pixels (100 + (60 x 0.5)). The search box width is therefore 30 pixels (15 pixels on each side) wider than the width of the trained box. By default, the additional margin that MIL adds is half the trained nominal width of the bead template.

For verification, the height and spacing of the search box is always the same as the height and spacing established for the trained box (M_TRAINED_BOX_HEIGHT and M_TRAINED_BOX_SPACING). For more information, see the Training box of the template subsection of the Defining, training, and modifying bead templates section earlier in this chapter.

Fail warning

Only trained points with a corresponding measured point that falls within its search box can be given a passing status result (M_STATUS). In some cases, you might want the measured point to fail verification, but you still want MIL to find it, if it is within a certain distance from the limits of its search box's margin. This can mark the difference between measured points that are truly not there (for example, missing glue along the path), versus measured points that are misplaced (for example, an unexpected bulge of glue protruding along the typical glue path). To specify an additional width for the search box in which a measured point can be found but have a failed status, use M_FAIL_WARNING_OFFSET.

When a trained point's corresponding measured point falls inside its search box's fail-warning zone, you can still retrieve its results, such as its found position. These results are not possible for points that fall outside the fail-warning zone. If the width of the search box is greater than M_FAIL_WARNING_OFFSET, this setting has no effect.

Position and offset

Position refers to either the X- and Y-location of each trained point in the template (which you can retrieve using MbeadGetResult() with M_TRAINED_POSITION_X and M_TRAINED_POSITION_Y) or the X- and Y-location of each corresponding measured point in the measured bead (which you can retrieve using M_POSITION_X and M_POSITION_Y). The offset refers to the distance between these two sets of corresponding positions. Positions are taken at the center of the bead width.

Using MbeadControl() with M_OFFSET_MAX, you can set the maximum allowable distance between the position of the trained points in the template and the position of their corresponding measured points in the target, for your results to have a passing status (M_STATUS). By default, MIL does not allow any offset.

To retrieve whether the measured bead adheres to the specified offset condition, use MbeadGetResult() with M_STATUS_OFFSET. Keep in mind that measured points must always fall within the search box, otherwise they are not found and the offset constraint does not apply. The maximum offset should therefore fall within the search box. Depending on your settings, a measured point can be found within the search box (M_STATUS_FOUND), but still fail the position offset condition (M_STATUS_OFFSET).

To retrieve the actual offset calculated between each trained point and its corresponding measured point, use M_OFFSET. To retrieve the greatest of these offsets, use M_OFFSET_MAX. To retrieve the index of the trained point that corresponds to the measured point that represents the greatest offset, use M_OFFSET_MAX_INDEX.

Width

Width refers to the bead's thickness, from side to side, along its path. To retrieve the width of the measured bead at each of its measured points, use MbeadGetResult() with M_WIDTH_VALUE. You can also retrieve the average width of the measured bead (M_WIDTH_AVERAGE), its maximum (M_WIDTH_MAX) and minimum (M_WIDTH_MIN) width, as well as the index of the trained point that corresponds to the measured point representing the maximum (M_WIDTH_MAX_INDEX) and minimum (M_WIDTH_MIN_INDEX) width.

By default, the width of the bead at each measured point must be the same as the width of the bead template at each corresponding trained point, to get a passing status result (M_STATUS), regardless of any other setting. For stripe-beads (MbeadTemplate() with M_BEAD_STRIPE), you can use MbeadControl() with M_WIDTH_DELTA_NEG and M_WIDTH_DELTA_POS to set a valid delta negative and delta positive tolerance between the width of the measured bead and the nominal width of the template.

To retrieve whether width results adhere to (pass or fail) the specified width conditions, use M_STATUS_WIDTH_MAX and M_STATUS_WIDTH_MIN.

Angle

The angle of a bead refers to the angles represented by its points. For each point, an angle is established using a theoretical line that passes through that point, and is perpendicular to the tangent line that represents the bead within that point's training or search box.

Using the M_ANGLE_ACCURACY_MAX_DEVIATION control type, you can set a maximum angular difference between the angle of the bead template at each of its trained points, and the angle of the corresponding measured bead at each of its measured points. By default, there can be no difference.

If you do not specify an angular deviation, MIL considers the width of the bead at each measured point to be along the angle established at its corresponding trained point. By specifying an angular deviation, MIL can refine its width measurement accordingly.

Typically, you should use M_ANGLE_ACCURACY_MAX_DEVIATION to specify a small value of only a few degrees to manage minor deviations in bead width due to some shifts in angle that can occur in certain target images during the verification phase. Large deviation values can lead to invalid results and longer processing times. To retrieve the angle of the measured bead at the position of its measured points, use MbeadGetResult() with M_ANGLE.

Intensity

Intensity can be seen as the brightness of the bead, which MIL establishes according to the grayscale value of its pixels. Since your training (MbeadTrain()) and target (MbeadVerify()) images must be 8-bit, the highest possible pixel value of a bead is 255 (brightest intensity), while the lowest possible pixel value is 0 (darkest intensity). MIL calculates the intensity for each point (measured point or trained point) at the center of its corresponding bead width. Intensity constraints and results only apply to stripe-beads (MbeadTemplate() with M_BEAD_STRIPE).

To retrieve the intensity of the measured bead at each of its measured points, use MbeadGetResult() with M_INTENSITY. You can also retrieve the measured bead's maximum (M_INTENSITY_MAX) and minimum (M_INTENSITY_MIN) intensity, as well as the index of the trained point that corresponds to the measured point representing the maximum (M_INTENSITY_MAX_INDEX) and minimum (M_INTENSITY_MIN_INDEX) intensity.

Provided that MIL is able to find the bead in the search box, there are no default restrictions for the intensity of the bead. You can however use MbeadControl() to set a nominal pixel intensity for the measured bead, and an acceptable maximum and minimum range within which the intensity of the bead must fall.

To set intensity conditions, first use M_INTENSITY_NOMINAL_MODE to specify how MIL should establish the nominal intensity with which to validate the template's corresponding measured bead.

  • By setting the nominal intensity mode to M_AUTO, MIL will establish the nominal intensity during the training phase (from the training image).

  • By setting the nominal intensity mode to M_USER_DEFINED, you must explicitly set the nominal intensity using M_INTENSITY_NOMINAL.

  • By setting the nominal intensity mode to M_DISABLE (same as M_DEFAULT), MIL will ignore all intensity conditions.

Once you have established the nominal intensity, either from the training image (M_AUTO) or with an explicit value (M_INTENSITY_NOMINAL), you can use the following verification settings to specify a valid range within which the intensity of the measured bead must fall:

  • M_INTENSITY_DELTA_NEG, which sets the lowest pixel intensity MIL considers valid for the measured bead, relative to the nominal intensity. That is, LowestValidIntensity = NominalIntensity - M_INTENSITY_DELTA_NEG.

  • M_INTENSITY_DELTA_POS, which sets the highest pixel intensity MIL considers valid for the measured bead, relative to the nominal intensity. That is, HighestValidIntensity = NominalIntensity + M_INTENSITY_DELTA_POS.

To retrieve whether the intensity results adhere to (pass or fail) the specified intensity conditions, use M_STATUS_INTENSITY_MAX and M_STATUS_INTENSITY_MIN.

Status and other results

As previously discussed, there are many different status results available for retrieval with MbeadGetResult(). Depending on the settings of this function's parameters, the same status can have different meanings. For example, the main status (M_STATUS) result can retrieve:

Some of the specific M_STATUS_... results are available for either the template's corresponding measured bead or the trained points' corresponding measured points. For example, if you are retrieving the M_STATUS_FOUND result, and you set the ResultIndex parameter to M_GENERAL, MIL returns M_PASS if all trained points have a corresponding measured point (all were found). Otherwise, MIL returns M_FAIL. However, if you set the ResultIndex parameter to M_ALL, MIL returns M_FAIL or M_PASS for each trained point, depending on whether its corresponding measured point was found. If you set the ResultIndex parameter to a specific trained point, MIL returns only the found status of its measured point.

Although status results are typically the most crucial, you can also retrieve other results related to MIL's analysis of the measured bead or measured point. For example, you can retrieve the position of the training point's associated measured points (M_POSITION_X and M_POSITION_Y), the corresponding width of the measured bead at those points (M_WIDTH_VALUE), and whether the path of the measured bead ends where it began (M_CLOSURE).

When you have a failing status

To help decipher why you have a failing status (M_STATUS), you can try:

  • Pin-pointing the root cause of the failure. For example, if the failing status is based on all the bead templates in the entire context, you should get the status of each individual template, and for the ones that are failing, you should get the status of each individual point.

    Keep in mind all the conditions upon which the status is based, and how failing just one causes M_STATUS to fail. For example, if you are retrieving whether a specific template has passed or failed verification, and that template's corresponding measured bead has failed the gap tolerance constraint (M_STATUS_GAP_TOLERANCE), M_STATUS will fail, even if there are enough measured points to pass the minimum score constraint (M_STATUS_SCORE).

  • Once you have isolated the failing points, determine the cause of their failure by getting more specific status results about them (M_STATUS_...). For example, you can use M_STATUS_SEARCH to determine whether MIL considers it possible to establish the measured point, given the current settings. Note that, if the search box corresponding to a measured point falls outside the target image, M_STATUS_SEARCH returns M_FAIL since you can never establish a measured point that is beyond the boundaries of the image.

  • Performing drawing operations to get a visual representation of the measured bead and its measured points. For example, you can draw a cross at the position of all the measured points that were expected but not found. For more information, see the Drawing section later in this chapter.

Since verification uses trained templates, settings for the training phase have an indirect affect on the verification phase. If you are unable to successfully verify beads in a target image, and you are unwilling to accept missing measured points (for example, by lowering M_ACCEPTANCE or allowing for gaps), you might have to modify the template and re-call MbeadTrain() before calling MbeadVerify() again.