LBitmap::MeanShift

#include "ltwrappr.h"

virtual 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.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

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.

Platforms

Win32, x64.

See Also

Functions:

LBitmap::AdjustTint, LBitmap::GammaCorrectExt, LBitmap::HistoEqualize, LBitmap::ChangeContrast, LBitmap::ChangeIntensity, LBitmap::GammaCorrect, LBitmap::HistoContrast, LBitmap::StretchIntensity, LBitmap::Invert, LBitmap::ChangeHue, LBitmap::ChangeSaturation, LBitmapBase::Fill, LBitmapBase::GetPixelColor, LBitmapBase::PutPixelColor, LBitmap::GetHistogram, LBitmap::WindowLevel, LBitmap::WindowLevelExt, LBitmap::LocalHistoEqualize, LBitmap::ChangeHueSatInt

Topics:

Raster Image Functions: Filtering Images

Example

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 Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Raster Imaging C++ Class Library Help