L_INT LBitmap::MeanShift(uRadius, uColorDistance ,uFlags = 0)
Performs noise reduction while preserving detail.
Size of the kernel where the middle pixel would be considered as the source pixel.
Color difference between the investigated pixel and the source pixel.
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
To keep details while removing noise, pass low positive values to ColorDistance parameter.
This function supports 12 and 16-bit grayscale and 48 and 64-bit color images. Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available in the Document and Medical Imaging toolkits.
This function does not support 32-bit grayscale images. It returns the error code ERROR_GRAY32_UNSUPPORTED if a 32-bit grayscale image is passed to this function.
Win32, x64.
L_INT LBitmap__ZoomWaveExample2(LAnimationWindow * LAniWnd)
{
L_INT nRet;
POINT CenterPt;
CenterPt.x = (LAniWnd->GetHandle ())->Width/2;
CenterPt.y = (LAniWnd->GetHandle ())->Height/2;
nRet = LAniWnd->ZoomWave(20 , 10 , 0 , 0, CenterPt, 0 , FILL_RPT);
return nRet;
}
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