LSegment::MrcSaveSegmentation

#include "ltwrappr.h"

L_INT LSegment::MrcSaveSegmentation(pszFileName)

L_TCHAR * pszFileName;

output file name

Saves the segments to a file.

Parameter

Description

pszFileName

Character string that contains the output file name.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function is used to export the segments from the segmentation handle to the specified file in a binary file format.

Call the LSegment::MrcStartBitmapSegmentation function before using any of the segmentation functions. When the LSegment class object is no longer needed, free it by calling the LSegment::MrcStopBitmapSegmentation function.

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

Elements:

LSegment::MrcGetPagesCount, LSegment::MrcCreateNewSegment, LSegment::MrcStartBitmapSegmentation, LSegment::MrcStopBitmapSegmentation, LSegment::MrcSetSegmentData, LSegment::MrcEnumSegments, LSegment::MrcCombineSegments, LSegment::MrcLoadSegmentation, LSegment::MrcCopySegmentationHandle, LSegment::MrcSegmentBitmap, Class Members

Topics:

General Segmentation

 

Manual Segmentation

Example

L_INT LSegment__MrcSaveSegmentationExample(LSegment Segment, L_TCHAR* pszFileName, LBitmapBase &Bitmap) 
{ 
   UNREFERENCED_PARAMETER(Bitmap); 
   L_INT nRet; 
   nRet = Segment.MrcSaveSegmentation(pszFileName); 
   if(nRet != SUCCESS) 
      return nRet; 
   return SUCCESS; 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS MRC C++ Class Library Help