#include "ltwrappr.h"
L_INT LBitmap::MeanShift(uRadius, uColorDistance ,uFlags = 0)
L_UINT uRadius; |
size of kernel |
L_UINT uColorDistance; |
color difference |
L_UINT32 uFlags; |
flag |
Performs noise reduction while preserving detail.
Parameter |
Description |
uRadius |
Size of the kernel where the middle pixel would be considered as the source pixel. |
uColorDistance |
Color difference between the investigated pixel and the source pixel. |
uFlags |
Reserved for future use. Must be 0. |
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.
Required DLLs and Libraries
LTIMGCOR For a listing of the exact DLLs and Libraries needed, based on the toolkit version, refer to Files To Be Included With Your Application. |
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