LBitmap::GlareDetection

Summary

Automatically detects the glare zone in Bitmap.

Syntax

#include "ltwrappr.h"

virtual L_INT LBitmap::GlareDetection()

Returns

Value Meaning
SUCCESS The function was successful.
< 1 An error occurred. Refer to Return Codes.

Comments

Automatically finds the glare spot in image.

The result is applied to the image as a region.

This function supports 24 and 36-bit color images and 8 grayscale images.

Glare Detection Function - Before

Glare Detection Function - Before

Glare Detection Function - After

Glare Detection Function - After

View additional platform support for this Glare Detection function.

Required DLLs and Libraries

Platforms

Win32, x64.

See Also

Example

#if defined (LEADTOOLS_V19_OR_LATER) 
L_INT LBitmap__GlareDetectionExample(L_VOID) 
{ 
    L_INT nRet ; 
    LBitmap LeadBitmap ; 
 
    nRet = LeadBitmap.Load(MAKE_IMAGE_PATH(TEXT("Glare.jpg")), 0,ORDER_BGR); 
    if(nRet !=SUCCESS) 
        return nRet ; 
 
    /* Apply Glare detection filter */ 
    nRet = LeadBitmap.GlareDetection() ; 
 
    return nRet ; 
} 
#endif // LEADTOOLS_V19_OR_LATER 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Raster Imaging C++ Class Library Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.