L_MrcCopySegmentationHandle

#include "ltsgm.h"

L_INT EXT_FUNCTION L_MrcCopySegmentationHandle(phSegmentDst, hSegmentSrc)

pHSEGMENTATION phSegmentDst;

/* pointer to the destination segmentation handle */

HSEGMENTATION hSegmentSrc;

/* structure containing the source segmentation handle */

Copies one segmentation handle to another. This function is available in both the (Document/Medical) toolkits.

Parameter

Description

phSegmentDst

Pointer to the segmentation handle referencing the destination handle.

hSegmentSrc

HSEGMENTATION structure that contains the source segmentation handle to copy.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function copies the segmentation handle and the segmentation data. Call the L_MrcStopBitmapSegmentation function to free the new segmentation handle.

Call the L_MrcStartBitmapSegmentation function before using any of the segmentation functions.

Required DLLs and Libraries

LTSGM

For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application.

See Also

Functions:

L_MrcCreateNewSegment, L_MrcStartBitmapSegmentation, L_MrcStopBitmapSegmentation, L_MrcSegmentBitmap, L_MrcSetSegmentData, L_MrcEnumSegments, L_MrcCombineSegments, L_MrcSaveSegmentation, L_MrcSegmentBitmapExt

Topics:

Auto-Segmentation

 

Manual Segmentation

 

MRC Bitmap Functions: Manipulating Segments

Example

L_INT CopySegmentation(pHSEGMENTATION pSegDst, HSEGMENTATION hSegSrc)
{
   return L_MrcCopySegmentationHandle(pSegDst, hSegSrc);
}