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

| Customize Help
| Save Settings

MbufClone



Function Map
Synopsis
Clones a data buffer.
Syntax
MIL_ID MbufClone(
MIL_ID SrcBufId, //in
MIL_ID SysId, //in
MIL_INT SizeX, //in
MIL_INT SizeY, //in
MIL_INT Type, //in
MIL_INT64 Attribute, //in
MIL_INT64 ControlFlag, //in
MIL_ID *VarBufIdPtr //out
)
Description

This function allocates a buffer with the same size, number of bands, type, and attributes as the source buffer, unless you specify that certain characteristics of the source buffer be different for the clone (for example, its size).

If you clone a child buffer, the clone will be similar to the source child, but it will not be a child itself. A clone of a band child of a packed buffer will be a one band planar equivalent.

If requested, you can also copy the source buffer's data to the clone (using M_COPY_SOURCE_DATA).

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
SrcBufId

Specifies the identifier of the source buffer to clone.

This image buffer must not have a region of interest (ROI) associated with it. Using an image buffer with an ROI will cause an error.

SysId

Specifies the system on which to allocate the clone.

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

Specifies that the clone is allocated on the same system as the source buffer.

SizeX

Specifies the width of the clone.

function map For specifying the width of the buffer
Click to summarizeValue Description
Click to summarize M_DEFAULT

Specifies that the width of the clone is the same as the source buffer.

Click to summarize Value

Specifies a value for the required width of the clone.

SizeY

Specifies the height of the clone.

function map For specifying the height of the buffer
Click to summarizeValue Description
Click to summarize M_DEFAULT

Specifies that the height of the clone is the same as the source buffer.

Click to summarize Value

Specifies a value for the required height of the clone.

Type

Specifies the data type of the clone.

function map For specifying the data type of the buffer
Click to summarizeValue Description
Click to summarize M_DEFAULT

Specifies that the clone has the same data type as the source buffer.

Attribute

Specifies the attributes of the clone.

function map For specifying the attributes of the buffer
Click to summarizeValue Description
Click to summarize M_DEFAULT

Specifies that the clone has the same attributes as the source buffer.

ControlFlag

Specifies the control settings for the cloning operation.

function map For specifying which information to copy
Click to summarizeValue Description
Click to summarize M_DEFAULT

Specifies to copy only the number of bands, type, and attributes of the source buffer. The data, information dependent on the content of the buffer (such as M_MIN and M_MAX), and the camera calibration information associated with the source buffer are not copied.

(summarize)
Click to summarize M_COPY_SOURCE_DATA

Specifies to copy the number of bands, type, attributes, and data of the source buffer, including the camera calibration information and information dependent on the content of the buffer (such as M_MIN and M_MAX).

VarBufIdPtr

Specifies the address of the variable in which to write the buffer identifier. Since the MbufClone() function also returns the buffer identifier, you can set this parameter to M_NULL. If allocation fails, M_NULL is written as the identifier.

Return value
The returned value is the buffer identifier. If allocation fails, M_NULL is returned.
Compilation information
Header Include mil.h.
Library Use mil.lib.
DLL Requires mil.dll.
NONE DEFAULT DEFAULT DEFAULT DEFAULT DEFAULT DEFAULT COPY SOURCE DATA