#include "Ltimgcor.h"
L_LTIMGCOR_API L_VOID L_FreeKmeansOutput(pOutCenters)
Frees the data generated by the L_KMeansBitmapSegmentation function.
The data generated by the L_KMeansBitmapSegmentation function.
None
Use this function to free the data generated by the L_KMeansBitmapSegmentation function.
Required DLLs and Libraries
Win32, x64.
L_INT FreeKmeansOutputExample(L_VOID)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap; /* Bitmap handle for the image */
/* Load a bitmap at its own bits per pixel */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("IMAGE1.CMP")), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
if(nRet !=SUCCESS)
return nRet;
L_UINT nCluster = 4;
L_COLORREF OutCenter = (L_COLORREF) RGB(25,50,70);
L_COLORREF* pOutCenters = &OutCenter;
L_INT nOutCentersCount = -1;
nRet = L_KMeansBitmapSegmentation(&LeadBitmap, nCluster, &pOutCenters, &nOutCentersCount, NULL, KMEANS_RANDOM);
if(nRet !=SUCCESS)
return nRet;
//free the pOutCenters data
L_FreeKmeansOutput(pOutCenters);
//free bitmap
if(LeadBitmap.Flags.Allocated)
L_FreeBitmap(&LeadBitmap);
return SUCCESS;
}
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document