#include "Ltimgcor.h"
L_LTIMGCOR_API L_INT L_ShrinkWrapTool(pBitmap, nThreshold, ptCenter, nRadius, uFlags)
Automatically segments a rectangular or circular area in the specified image using the specified threshold.
Pointer to the bitmap handle.
Threshold used in the segmentation process. Possible grayscale values range from 0 to 255. The default value is 50.
Center of the rectangle or circle used to segment the object inside. All points inside the search area will be segmented.
Radius of the rectangular or circular search area, in pixels. Do not exceed the length of the image diagonal. (If nRadius exceeds the length of the image diagonal, the value is adjusted to fit inside the image.)
Flags that specify the shape to be used. Possible values are:
Value | Meaning |
---|---|
SHRINK_CIRCLE | [0x0010] Start shrinking from a circular-shaped region. |
SHRINK_RECT | [0x0008] Start shrinking from a rectangular-shaped region. |
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
The result is applied to the image as a region.
This function was designed specifically to segment regions of cancer clusters in CT/MRI images.
The nRadius
parameter should not exceed the length of the image diagonal.
This command does not support 32-bit grayscale images.
This command supports signed/unsigned images.
Required DLLs and Libraries
Win32, x64, Linux.
This example loads a bitmap and applies shrink wrap tool filter.
L_INT ShrinkWrapToolExample(L_VOID)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap; /* Bitmap handle to hold the loaded image. */
/* Load the bitmap, keeping the bits per pixel of the file */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("IMAGE3.dcm")), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
if(nRet != SUCCESS)
return nRet ;
POINT Center ;
Center.x = 245 ;
Center.y = 230 ;
nRet = L_ShrinkWrapTool(&LeadBitmap, 60, Center, 10, SHRINK_RECT);
if(nRet !=SUCCESS)
return nRet;
nRet = L_SaveBitmap(MAKE_IMAGE_PATH(TEXT("Result.BMP")), &LeadBitmap, FILE_BMP, 24, 0, NULL);
if(nRet !=SUCCESS)
return nRet;
//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