| MIL 10 Reference
| Customize Help
| Save Settings

MstrGetResult



See also
Availability
Not available in MIL-Lite
Available in MIL

Available on Windows
Available on Linux

Available on Non-Matrox computer
Available on Matrox 4Sight-X
Available on Matrox 4Sight GP
Available on Matrox Supersight
function map Function map
Examples
Synopsis
Get the specified type of result(s) from a String Reader result buffer.
Syntax
void MstrGetResult(
MIL_ID ResultId, //in
MIL_INT Index, //in
MIL_INT64 ResultType, //in
void *ResultArrayPtr //out
)
Description

This function retrieves the result(s) of the specified type from a String Reader result buffer. Results are only available after calling MstrRead().

When retrieving results, you will need to know the required type and size of the array in which to store the results. Typically, the default data type is MIL_DOUBLE. For certain results (such as, M_TEXT, M_FORMATTED_STRING, and M_STRING), the default type of the required array depends on the selected encoding scheme (MstrControl() with M_ENCODING). You can specify any data type by explicitly adding it to the result. The size of the array depends on the result type.

All positional results are relative to the center of the top-left pixel in the target.

Unless otherwise specified, the value settings are applicable to both font based and fontless contexts.

Note that this function reference has not been updated for a MIL system added during a MIL update. Refer to the MIL system's release note to see if there is complementary information.
Parameters
This function is not supported on the selected boards.
Parameters
ResultId

Specifies the identifier of the String Reader result buffer from which to retrieve results.

Index

Specifies where to get results. This parameter can be set to one of the following:

function map For specifying where to get results
CollapseValue Description
Collapse M_DEFAULT

Same as M_ALL.

Collapse M_ALL

Specifies that the results of all strings will be retrieved.

Collapse M_GENERAL

Specifies that the results relating to the entire String Reader context will be retrieved.

Collapse 0 to M_STRING_NUMBER - 1

Specifies the index of the string from which to get results.

ResultType

Specifies the type of result to retrieve.

See the Parameter associations section for possible values that can be specified.

ResultArrayPtr
Accepts the address of one of the following (see the Parameter associations section for specifics on which is expected):
  • array of type char
  • array of type MIL_DOUBLE
  • array of type MIL_FLOAT
  • array of type MIL_ID
  • array of type MIL_INT
  • array of type MIL_INT16
  • array of type MIL_INT32
  • array of type MIL_INT64
  • array of type MIL_TEXT_CHAR
  • array of type short
  • char
  • MIL_DOUBLE
  • MIL_FLOAT
  • MIL_ID
  • MIL_INT
  • MIL_INT16
  • MIL_INT32
  • MIL_INT64
  • MIL_TEXT_CHAR

Specifies the address in which to write results.

See the Parameter associations section for possible values that can be returned.

When retrieving a general result (M_GENERAL), the ResultType parameter can be set to one of the following values.

Unless otherwise specified, the following values require that you pass the ResultArrayPtr parameter the address of a MIL_DOUBLE.

function map For retrieving general results
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_CHAR_NUMBER +

Retrieves the total number of characters read (all strings together).

(summarize)
Collapse M_CONTEXT_ID +

Retrieves the identifier of the String Reader context used by MstrRead() to obtain the results in the result buffer. Note that this identifier might not be valid if the String Reader context has been freed using MstrFree().

(summarize)
Collapse M_STRING_NUMBER +

Retrieves the total number of strings read.

(summarize)
Collapse M_TEXT +

Retrieves the entire text. This includes all string characters, the inserted space characters, the string separators, and the terminating null character ("\0").

Strings are ordered in the natural Latin-based reading order.

A space character is inserted in the text each time the distance between two adjacent characters exceeds the space width, at the scale of the string. The inserted space character can be set using MstrControl() with M_SPACE_CHARACTER. By default, the inserted space character is a space (ASCII code 32).

A string separator is inserted between each string in the text; that is, each time the distance between two adjacent characters is greater than the space size, which depends on the space width (at the scale of the string) and the maximum number of consecutive spaces. The string separator can be set using MstrControl() with M_STRING_SEPARATOR. By default, the string separator is a new line (ASCII code 10).

(summarize)
Collapse ResultArrayPtr data type info
Collapse M_TEXT_ALLOC_SIZE_BYTE +

Retrieves the number of bytes required to retrieve M_TEXT result(s). This includes all string characters, the inserted space characters, the string separators, the terminating null character ("\0"), and takes the encoding bit size into account (MstrControl() with M_ENCODING). Note that the size returned is always the number of bytes, not the number of characters.

(summarize)
Collapse M_TEXT_SIZE +

Retrieves the total number of characters in the text. This includes all strings characters, the inserted space characters, and the string separators. Note that this does not include the terminating null character ("\0"). The string separator can be controlled using MstrControl() with M_STRING_SEPARATOR. The inserted space characters can be controlled using MstrControl() with M_SPACE_CHARACTER.

(summarize)
Collapse M_TIMEOUT_END +

Retrieves whether the timeout limit was reached. You can set the timeout limit using MstrControl() with M_TIMEOUT.

(summarize)
Collapse M_FALSE

Specifies that the timeout limit was not reached.

Collapse M_TRUE

Specifies that the timeout limit was reached.

When retrieving individual string results, the ResultType parameter can be set to one of the following values. Results can be retrieved for a specific string, or for all strings (M_ALL), unless otherwise specified. Note that strings are ordered in the natural Latin-based reading order.

Unless otherwise specified, the following values require that you pass the ResultArrayPtr parameter the address of a MIL_DOUBLE (when retrieving a specific string) or the address of an array of type MIL_DOUBLE with a size equal to the number of strings read. This number can be obtained using MstrGetResult() with M_STRING_NUMBER (when retrieving all results).

function map For individual strings
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_CHAR_ANGLE +

Retrieves the angle of the characters in the string, in degrees. The angle is the same for all the characters in the string; different angles for individual characters within a string cannot be obtained. The characters' angle is not necessarily equal to the string's angle.

The angle is measured counter-clockwise, from the positive X-axis towards the negative Y-axis of the image.

(summarize)
Collapse M_FOREGROUND_VALUE +

Retrieves the foreground value of the string read.

(summarize)
Collapse M_FORMATTED_STRING +

Retrieves the formatted string. This includes all strings characters, the inserted space characters and the terminating null character ("\0").

A space character is inserted in the formatted string each time the distance between two adjacent characters exceeds the space width, at the scale of the string. The inserted space character can be set using MstrControl() with M_SPACE_CHARACTER. By default, the inserted space character is a space (ASCII code 32).

(summarize)
Collapse ResultArrayPtr data type info
Collapse M_FORMATTED_STRING_SIZE +

Retrieves the number of characters in the formatted string. This includes string characters and the inserted space characters. This does not include the terminating null character ("\0").

A space character is inserted in the formatted string each time the distance between 2 adjacent characters exceeds the M_SPACE_WIDTH value, which you can set with MstrControl(). Note that the inserted space characters can be controlled using MstrControl() with M_SPACE_CHARACTER.

(summarize)
Collapse M_SKEW_ANGLE +

Retrieves the angle of the characters' skew in the string, in degrees. The angle is the same for all the characters in the string; different angles for individual characters within a string cannot be obtained.

(summarize)
Collapse M_STRING +

Retrieves the terminating null character ("\0") that was located during the read operation. The string does not contain any space characters or string separators.

Refer to M_CHAR_VALUE to retrieve all characters of all strings without the terminating null character ("\0"). Refer to M_FORMATTED_STRING or M_TEXT to retrieve all strings with their space characters and/or string separators.

(summarize)
Collapse ResultArrayPtr data type info
Collapse M_STRING_ALLOC_SIZE_BYTE +

Retrieves the number of bytes required to retrieve M_STRING result(s). This includes the terminating null character ("\0"), and takes the encoding bit size into account (MstrControl() with M_ENCODING). M_STRING_ALLOC_SIZE_BYTE is typically used when retrieving all results (M_ALL), and will return an array of string size byte (1 element for each string). Note that the size is always the number of bytes, not the number of characters.

(summarize)
Collapse M_STRING_ANGLE +

Retrieves the angle of the string, in degrees.

An angle interpreted with respect to the pixel coordinate system is always measured counter-clockwise, from the positive X-axis towards the negative Y-axis of the image. For information on the angle's direction of rotation when interpreting the angle with respect to the relative coordinate system, see the Angle convention in MIL subsection of the Working with real-world units section of Chapter 25: Calibrating your camera setup.

(summarize)
Collapse M_STRING_ASPECT_RATIO +

Retrieves the aspect ratio of the string. The aspect ratio of the string is the median aspect ratio of all the characters in the string.

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_STRING_BOX_BL_X +

Retrieves the X-position of the bottom-left corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_BL_Y +

Retrieves the Y-position of the bottom-left corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_BR_X +

Retrieves the X-position of the bottom-right corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_BR_Y +

Retrieves the Y-position of the bottom-right corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_UL_X +

Retrieves the X-position of the top-left corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_UL_Y +

Retrieves the Y-position of the top-left corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_UR_X +

Retrieves the X-position of the top-right corner of the bounding box of the string.

(summarize)
Collapse M_STRING_BOX_UR_Y +

Retrieves the Y-position of the top-right corner of the bounding box of the string.

(summarize)
Collapse M_STRING_CHAR_SCORE_MAX +

Retrieves the maximum character score of the string.

(summarize)
Collapse M_STRING_CHAR_SCORE_MIN +

Retrieves the minimum character score of the string.

(summarize)
Collapse M_STRING_MODEL_INDEX +

Retrieves the index of the string model read.

(summarize)
Collapse M_STRING_MODEL_USER_LABEL +

Retrieves the user label of the string model read.

(summarize)
Collapse M_STRING_POSITION_X +

Retrieves the X-position of the string. The position of the string is the position of its first character. For more information, see M_CHAR_POSITION_X.

(summarize)
Collapse M_STRING_POSITION_Y +

Retrieves the Y-position of the string. The position of the string is the position of its first character. For more information, see M_CHAR_POSITION_Y.

(summarize)
Collapse M_STRING_SCALE +

Retrieves the scale of the string. The scale of the string is the median scale in the X-direction of all the characters in the string.

(summarize)
Collapse M_STRING_SCORE +

Retrieves the string score calculated during the read operation for the entire string. The string score is the average score of the characters in the string.

(summarize)
Collapse M_STRING_SIZE +

Retrieves the size of the string. This does not include the terminating null character ("\0"). Space characters are not counted in the string size.

(summarize)
Collapse M_STRING_TARGET_SCORE +

Retrieves the string target score calculated during the read operation for the entire string.

The string target score is computed from the unread characters that are in the region of the string in the target image. These otherwise readable characters remain unread due to user-specified constraints, such as scale and grammar restrictions. The more unread characters there are, the lower the target score will be.

(summarize)

When retrieving results for individual characters of a string, the ResultType parameter can be set to one of the following values. Results can be returned for characters of a specific string or for characters of all (M_ALL) strings. However, an array of results is always returned. Note that characters in the string are ordered by their index position in the string.

Unless otherwise specified, when retrieving a specific string, the following values require that you pass the ResultArrayPtr parameter the address of an array of type MIL_DOUBLE with a size equal to the number of characters in the individual string. This number can be obtained using MstrGetResult() with M_STRING_SIZE. When retrieving all strings, the following values require that you pass the ResultArrayPtr parameter the address of an array of type MIL_DOUBLE with a size equal to the number of characters in all the strings. This number can be obtained using MstrGetResult() with M_CHAR_NUMBER.

function map For individual characters of a string
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_CHAR_ASPECT_RATIO +

Retrieves the aspect ratio of the character. The aspect ratio of the character is the ratio of its scale in the X-direction and in the Y-direction.

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_CHAR_BASELINE_DEVIATION +

Retrieves the baseline deviation of every read character within the string. This represents the deviation of the character's baseline from the string's baseline. For non-punctuation characters, this value is a percentage of the character's height (Y-size). For punctuation characters, this value is a percentage of the height of the tallest character within the font. For more information, refer to MstrControl() with M_CHAR_MAX_BASELINE_DEVIATION and the Character's maximum baseline deviation subsection of the Degrees of freedom section of Chapter 11: String Reader.

Note that if the character's baseline is set to M_NONE, its deviation will always be returned as '0'.

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_CHAR_BOX_BL_X +

Retrieves the X-position of the bottom-left corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_BL_Y +

Retrieves the Y-position of the bottom-left corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_BR_X +

Retrieves the X-position of the bottom-right corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_BR_Y +

Retrieves the Y-position of the bottom-right corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_UL_X +

Retrieves the X-position of the top-left corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_UL_Y +

Retrieves the Y-position of the top-left corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_UR_X +

Retrieves the X-position of the top-right corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_BOX_UR_Y +

Retrieves the Y-position of the top-right corner of the bounding box of each character.

(summarize)
Collapse M_CHAR_CONSECUTIVE_SPACE +

Retrieves the number of consecutive spaces that can be inserted between this character and the following one in the string. For more information, refer to M_SPACE_WIDTH and M_SPACE_MAX_CONSECUTIVE in MstrControl().

(summarize)
Collapse M_CHAR_FONT +

Retrieves the index of the font of each individual character within the string(s). The index returned is that of the character's font at the moment the MstrRead() operation was performed.

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_CHAR_FONT_USER_LABEL +

Retrieves the user label of the font of each individual character within the string(s).

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_CHAR_HOMOGENEITY_SCORE +

Retrieves the homogeneity score of each individual character within the string(s). The character's homogeneity score quantifies the similarity between the character in the target and the other characters of the string in the target.

(summarize)
Collapse M_CHAR_INDEX +

Retrieves the index of the character in the font for each individual character within the string(s). The index returned is that of the index of the character in its font at the moment the MstrRead() operation was performed.

Note that this control type is only available for a font-based context.

(summarize)
Collapse M_CHAR_POSITION_X +

Retrieves the X-position of the character. The position of a character is the position of its center of gravity.

(summarize)
Collapse M_CHAR_POSITION_Y +

Retrieves the Y-position of the character. The position of a character is the position of its center of gravity.

(summarize)
Collapse M_CHAR_SCALE +

Retrieves the scale of the character. The scale of the character is its scale in the X-direction.

(summarize)
Collapse M_CHAR_SCORE +

Retrieves the score of each individual character within the string(s). The character's score quantifies the similarity between the character in the target and the character in the font; it also quantifies the similarity between the character in the target and the other characters of the string in the target.

(summarize)
Collapse M_CHAR_SIMILARITY_SCORE +

Retrieves the similarity score of each individual character within the string(s). The character's similarity score quantifies the similarity between the character in the target and the character in the font.

(summarize)
Collapse M_CHAR_VALUE +

Retrieves the value of each character read.

(summarize)
Collapse ResultArrayPtr data type info

When retrieving transformation coefficient results for individual characters of a string, the ResultType parameter can be set to one of the following values.

Transformation coefficients allow you to transform any point from the character's source image (the image from which the characters were defined) to its corresponding position in the target image (forward), or from the read position in the target image to its corresponding position in the character's source image (reverse). This is done using the following equations:

x d = A x s + B y s + C .

y d = D x s + E y s + F .

where A, B, C, D, E, and F are the transformation coefficients (forward or reverse); x s and y s specify the source coordinates (character image for forward transformation or target image for reverse transformation); and, x d and y d specify the destination coordinates (target image for forward transformation or character image for reverse transformation).

Unless otherwise specified, when retrieving a specific string, the following values require that you pass the ResultArrayPtr parameter the address of an array of type MIL_DOUBLE with a size equal to the number of characters in the individual string. This number can be obtained using MstrGetResult() with M_STRING_SIZE. When retrieving all strings, the following values require that you pass the ResultArrayPtr parameter the address of an array of type MIL_DOUBLE with a size equal to the number of characters in all the strings. This number can be obtained using MstrGetResult() with M_CHAR_NUMBER.

function map For retrieving transformation coefficient results for individual characters of a string with a font-based context
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_A_FORWARD +

Retrieves the forward transformation coefficient A.

(summarize)
Collapse M_A_REVERSE +

Retrieves the reverse transformation coefficient A.

(summarize)
Collapse M_B_FORWARD +

Retrieves the forward transformation coefficient B.

(summarize)
Collapse M_B_REVERSE +

Retrieves the reverse transformation coefficient B.

(summarize)
Collapse M_C_FORWARD +

Retrieves the forward transformation coefficient C.

(summarize)
Collapse M_C_REVERSE +

Retrieves the reverse transformation coefficient C.

(summarize)
Collapse M_D_FORWARD +

Retrieves the forward transformation coefficient D.

(summarize)
Collapse M_D_REVERSE +

Retrieves the reverse transformation coefficient D.

(summarize)
Collapse M_E_FORWARD +

Retrieves the forward transformation coefficient E.

(summarize)
Collapse M_E_REVERSE +

Retrieves the reverse transformation coefficient E.

(summarize)
Collapse M_F_FORWARD +

Retrieves the forward transformation coefficient F.

(summarize)
Collapse M_F_REVERSE +

Retrieves the reverse transformation coefficient F.

(summarize)

You can add one of the following values to the above-mentioned values to cast the requested results to a required data type.

function map For casting the result to a required data type
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_TYPE_CHAR

Casts the requested results to a char.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: char
    Note: When a single result.

  • Data type: array of type char
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_DOUBLE

Casts the requested results to a MIL_DOUBLE.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_DOUBLE
    Note: When a single result.

  • Data type: array of type MIL_DOUBLE
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_FLOAT

Casts the requested results to a MIL_FLOAT.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_FLOAT
    Note: When a single result.

  • Data type: array of type MIL_FLOAT
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_ID

Casts the requested results to a MIL_ID.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_ID
    Note: When a single result.

  • Data type: array of type MIL_ID
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_INT

Casts the requested results to a MIL_INT.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_INT
    Note: When a single result.

  • Data type: array of type MIL_INT
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_INT16

Casts the requested results to a MIL_INT16.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_INT16
    Note: When a single result.

  • Data type: array of type MIL_INT16
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_INT32

Casts the requested results to a MIL_INT32.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_INT32
    Note: When a single result.

  • Data type: array of type MIL_INT32
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_MIL_INT64

Casts the requested results to a MIL_INT64.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_INT64
    Note: When a single result.

  • Data type: array of type MIL_INT64
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

Collapse M_TYPE_TEXT_CHAR

Casts the requested results to a MIL_TEXT_CHAR.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_TEXT_CHAR
    Note: When a single result.

  • Data type: array of type MIL_TEXT_CHAR
    Array size: Size depends on the contents of the array.
    Note: When multiple results.

When retrieving errors or warnings reported by the last call to MstrExpert(), the ResultType parameter can be set to one of the following values.

To retrieve general errors or warnings (relating to the entire String Reader context), the Index parameter must be set to M_GENERAL. To retrieve errors or warnings for a specific string, or for all strings, the Index parameter must be set to the string's index, or to M_ALL.

function map For retrieving errors or warnings reported by the last call to MstrExpert()
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_REPORT_ERRORS +

Retrieves a list of all the errors reported by the last call to MstrExpert().

To inquire the string associated with an error, use MstrInquire() with M_REPORT_STRING.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: array of type MIL_INT
    Array size: M_REPORT_NUMBER_OF_ERRORS
    Note: when retrieving general errors, using MstrGetResult() with M_GENERAL or when retrieving errors for a specific string index

  • Data type: array of type MIL_INT
    Array size: the sum of the elements of the array retrieved by M_REPORT_NUMBER_OF_ERRORS
    Note: when retrieving errors for all strings

Collapse M_REPORT_NUMBER_OF_ERRORS +

Retrieves the number of errors reported by the last call to MstrExpert().

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_DOUBLE
    Note: when retrieving general errors, using MstrGetResult() with M_GENERAL or when retrieving errors for a specific string index

  • Data type: array of type MIL_DOUBLE
    Array size: MstrInquire() with M_NUMBER_OF_STRING_MODELS
    Note: when retrieving errors for all strings

Collapse M_REPORT_NUMBER_OF_WARNINGS +

Retrieves the number of warnings reported by the last call to MstrExpert().

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: MIL_DOUBLE
    Note: when retrieving warnings, using MstrGetResult() with M_GENERAL or when retrieving warnings for a specific string index

  • Data type: array of type MIL_DOUBLE
    Array size: MstrInquire() with M_NUMBER_OF_STRING_MODELS
    Note: when retrieving warnings for all strings

Collapse M_REPORT_WARNINGS +

Retrieves a list of all the warnings reported by the last call to MstrExpert().

To inquire the string associated with a warning, use MstrInquire() with M_REPORT_STRING.

(summarize)
Collapse ResultArrayPtr data type info
  • Data type: array of type MIL_INT
    Array size: M_REPORT_NUMBER_OF_WARNINGS
    Note: when retrieving general warnings, using MstrGetResult() with M_GENERAL or when retrieving warnings for a specific string index

  • Data type: array of type MIL_INT
    Array size: the sum of the elements of the array retrieved by M_REPORT_NUMBER_OF_WARNINGS
    Note: when retrieving warnings for all strings

You can add the following value to the above-mentioned values to determine whether a result is available.

function map For determining whether results are available
CollapseResultType Description
ResultArrayPtr
- Possible values returned
Collapse M_AVAILABLE

Retrieves whether a result is available to be returned.

(summarize)
Collapse ResultArrayPtr data type info

Data type: MIL_DOUBLE

Collapse M_NULL

Specifies that the result is not available to be retrieved.

Collapse Value != 0

Specifies that the result is available to be retrieved.

Compilation information
Header Include mil.h.
Library Use mil.lib; milstr.lib.
DLL Requires mil.dll; milstr.dll.
DEFAULT ALL GENERAL STRING NUMBER - 1 CHAR NUMBER CONTEXT ID STRING NUMBER TEXT TEXT ALLOC SIZE BYTE TEXT SIZE TIMEOUT END FALSE TRUE CHAR ANGLE FOREGROUND VALUE FORMATTED STRING FORMATTED STRING SIZE SKEW ANGLE STRING STRING ALLOC SIZE BYTE STRING ANGLE STRING ASPECT RATIO STRING BOX BL X STRING BOX BL Y STRING BOX BR X STRING BOX BR Y STRING BOX UL X STRING BOX UL Y STRING BOX UR X STRING BOX UR Y STRING CHAR SCORE MAX STRING CHAR SCORE MIN STRING MODEL INDEX STRING MODEL USER LABEL STRING POSITION X STRING POSITION Y STRING SCALE STRING SCORE STRING SIZE STRING TARGET SCORE CHAR ASPECT RATIO CHAR BASELINE DEVIATION CHAR BOX BL X CHAR BOX BL Y CHAR BOX BR X CHAR BOX BR Y CHAR BOX UL X CHAR BOX UL Y CHAR BOX UR X CHAR BOX UR Y CHAR CONSECUTIVE SPACE CHAR FONT CHAR FONT USER LABEL CHAR HOMOGENEITY SCORE CHAR INDEX CHAR POSITION X CHAR POSITION Y CHAR SCALE CHAR SCORE CHAR SIMILARITY SCORE CHAR VALUE A FORWARD A REVERSE B FORWARD B REVERSE C FORWARD C REVERSE D FORWARD D REVERSE E FORWARD E REVERSE F FORWARD F REVERSE TYPE CHAR TYPE MIL DOUBLE TYPE MIL FLOAT TYPE MIL ID TYPE MIL INT TYPE MIL INT16 TYPE MIL INT32 TYPE MIL INT64 TYPE TEXT CHAR REPORT ERRORS REPORT NUMBER OF ERRORS REPORT NUMBER OF WARNINGS REPORT WARNINGS AVAILABLE NULL GENERAL GENERAL