Click here to show toolbars of the Web Online Help System: show toolbars
 

| Customize Help
| Save Settings

McodeAlloc



Function Map
Synopsis
Allocate a code context.
Syntax
MIL_ID McodeAlloc(
MIL_ID SysId, //in
MIL_INT64 ContextType, //in
MIL_INT64 ControlFlag, //in
MIL_ID *ContextCodeIdPtr //out
)
Description

This function allocates a code context. A code context is a container for one or more code models. The code model is used by the read, write, and grading operations.

To add code models to the context, use McodeModel(). A code context can contain multiple code models of 1D code types (excluding GS1 databar, Planet, Postnet, and 4-state); for other code types, a code context can contain at most one code model.

To adjust code model settings, use McodeControl().

When allocating a code context, specify whether the context should be initialized for a robust or a typical read operation. The initial configuration of the code context establishes the default values for some code model settings. To change the initial configuration at a later date, use McodeControl() with M_INITIALIZATION_MODE. If your target images lack similarity (for example, some but not all include complex or noisy backgrounds), contain distorted codes, or contains codes that are at an angle or even flipped, use the M_IMPROVED_RECOGNITION initialization mode. Otherwise, use the M_TYPICAL_RECOGNITION initialization mode, which might produce a faster but potentially less robust result. The restrictions are indicated within the description of each code model setting; see McodeControl() for details.

To read and grade codes in an image, use McodeRead() and McodeGrade(), respectively. The module only supports searching for multiple occurrences of 1D codes (excluding 4-State, GS1 Databar, Planet, and Postnet code types) and 2D Data Matrix codes. For other types of codes, the module only supports searching for a single occurrence. When reading or grading multiple codes, multiple results can be retrieved using McodeGetResult(), one set of results for each occurrence.

When the code context is no longer needed, you should free it, using McodeFree().

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
SysId INQ

Specifies the system on which to allocate the context. This parameter should be set to one of the following values:

function map For specifying the system
Click to summarizeValue Description
Click to summarize M_DEFAULT_HOST

Specifies the default Host system of the current MIL application.

Click to summarize MIL system identifier

Specifies a valid system identifier, previously allocated using MsysAlloc().

ContextType

Specifies the context type. Reserved for future expansion. This parameter must be set to M_DEFAULT.

ControlFlag INQ

Specifies the initial configuration for the code context. The restrictions are indicated within each control, see McodeControl() for details.

function map For specifying the initial configuration of the code context
Click to summarizeValue Description
Click to summarize M_DEFAULT

Same as M_TYPICAL_RECOGNITION.

Click to summarize M_IMPROVED_RECOGNITION

Specifies a code context that might provide a more robust read and grade operation.

Click to summarize M_TYPICAL_RECOGNITION

Specifies a code context that might provide a quicker read and grade operation.

ContextCodeIdPtr

Specifies the address in which to return the identifier of the code context. Since this function also returns the identifier, this parameter can be set to M_NULL.

Return value
The returned value is the code context identifier if the allocation is successful. If allocation fails, M_NULL is returned.
Compilation information
Header Include mil.h.
Library Use mil.lib; milcode.lib.
DLL Requires mil.dll; milcode.dll.
DEFAULT HOST DEFAULT IMPROVED RECOGNITION TYPICAL RECOGNITION