L_INT LBitmap::AutoSegment(prcRect, uFlags = 0)
Performs automated segmentation of a rectangular area in the class object's bitmap. The result is applied to the image as a region.
Pointer to Windows RECT structure that specifies the part of the bitmap to perform the segmentation on.
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function was designed specifically for CT/MRI images, to segment regions of cancer clusters.
It is preferred that prcRect points to a rectangle that includes all needed object to be selected. Failure to do so will result in a partial selection of the object as the function will only segment inside the desired rectangle.
Try to make an informed selection, i.e. do not select more than the object you need to isolate and segment.
The rectangle must not exceed the borders of the image; otherwise the function will return an ERROR_INVALID_PARAMETER error and will not execute.
When the resultant region is no longer needed, it should be freed by calling LBitmapRgn::Free.
Win32, x64.
L_INT LBitmap__AutoSegmentExample()
{
L_INT nRet;
LBitmap LeadBitmap;
L_RECT pRect;
nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("image2.dcm")), 0,ORDER_BGR);
if(nRet !=SUCCESS)
return nRet;
pRect.left = 50;
pRect.top = 50;
pRect.right = 125;
pRect.bottom = 65;
nRet = LeadBitmap.AutoSegment(&pRect, 0);
if(nRet !=SUCCESS)
return nRet;
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