#include "l_bitmap.h"
L_LTIMGCOR_API L_INT L_CorrelationBitmap(pBitmap, pCorBitmap, pPoints, uMaxPoints, puNumOfPoints, uXStep, uYStep, uThreshold, uFlags)
This function compares pCorBitmap (or part of pCorBitmap) with all the areas of the same dimensions in pBitmap and finds those portions that match according to the measure of correlation.
Pointer to the bitmap handle referencing the bitmap to be searched.
Pointer to the bitmap handle that references the bitmap for which to search.
Pointer to an array of points. This array will be filled with the starting points for the correlated areas.
Size of the point array. This is also equal to the maximum number of regions in pBitmap
that can be found to be correlated.
Pointer to a variable to be updated with the number of areas in pBitmap actually found to be correlated to pCorBitmap
. Its maximum value is uMaxPoints
.
Step size in the X direction (along image width), in pixels. For best results, use 1.
Step size in the Y direction (along image height), in pixels. For best results, use 1.
Value that indicates the correlation threshold, which is a measure of association required to consider two areas to be correlated. If the correlation value between pCorBitmap
and an area in pBitmap
is less than the correlation threshold they are uncorrelated. Valid values range from 0 (zero resemblance) to 100 (perfect resemblance).
Reserved for future use. Must be 0.
Value | Meaning |
---|---|
SUCCESS | The function was successful. |
< 1 | An error occurred. Refer to Return Codes. |
This function compares pCorBitmap
(or a part of pCorBitmap) with all the areas of the same dimensions in pBitmap
and finds those areas that match according to the measure of correlation. Correlation is a measure of association (resemblance) between two images. It varies from 0 (zero resemblance) to 100 (perfect resemblance). This function updates the pPoints
parameter with the point of origin for those areas of pBitmap where the resemblance with pCorBitmap (or part of pCorBitmap) is greater than the value of uThreshold
. The pCorBitmap dimensions must be less than or equal to the pBitmap dimensions.
For example:
Select a bitmap of the object for which you want to look. Put it in pCorBitmap.
Select a bitmap that contains the object for which you are searching and put it in pBitmap.
Call L_CorrelationBitmap.
The function will update the pPoints
array parameter with the point of origin (top-left) for each area of the bitmap pBitmap
where the correlation with pCorBitmap
is greater than the correlation threshold. The height and width of the rectangles are the same as for pCorBitmap.
The result is:
To update a status bar or detect a user interrupt during execution of this function, refer to L_SetStatusCallback.
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.
The sign flag in the BITMAPHANDLE structure must be the same for all images listed. That is, all images must be either signed or unsigned.
Required DLLs and Libraries
Win32, x64, Linux.
This example loads bitmaps, and applies the correlation filter
L_INT CorrelationBitmapExample(L_VOID)
{
L_INT nRet;
BITMAPHANDLE LeadBitmap;
BITMAPHANDLE CorBitmap;
POINT pPoints[10] = {0};
L_UINT uNumOfPoints;
/* Load the bitmap, keeping the bits per pixel of the file */
nRet = L_LoadBitmap (MAKE_IMAGE_PATH(TEXT("clean.tif")), &LeadBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
if(nRet !=SUCCESS)
return nRet;
nRet = L_LoadBitmap(MAKE_IMAGE_PATH(TEXT("LetterA.cmp")), &CorBitmap, sizeof(BITMAPHANDLE), 0, ORDER_BGR, NULL, NULL);
if(nRet !=SUCCESS)
return nRet;
/*Apply the correlation filter*/
nRet = L_CorrelationBitmap(&LeadBitmap, &CorBitmap, pPoints, 10, &uNumOfPoints, 1, 2, 90, 0);
if(nRet !=SUCCESS)
return nRet;
//free Bitmap
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);
if(CorBitmap.Flags.Allocated)
L_FreeBitmap(&CorBitmap);
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