Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Raster imaging C++ Class library help

LBitmap::GetFeretsDiameter

Show in webframe

#include "ltwrappr.h"

static L_INT LBitmap::GetFeretsDiameter (pPoints, uSize, puFeretsDiameter, puFirstIndex, puSecondIndex, uFlags = 0)

POINT * pPoints;

/* pointer to an array of object contour coordinate points */

L_UINT uSize;

/* number of points in the array */

L_UINT * puFeretsDiameter;

/* pointer to a variable to be updated */

L_UINT * puFirstIndex;

/* pointer to a variable to be updated */

L_UINT * puSecondIndex;

/* pointer to a variable to be updated */

L_UINT32 uFlags;

/* flags */

Computes the Ferets diameter of an object (the maximum distance between the points of the perimeter of the region), and finds its end points.

Parameter

Description

pPoints

Pointer to an array of object contour coordinate points.

uSize

Array size.

puFeretsDiameter

Pointer to a variable to be updated with the length of the Ferets diameter. The length is measured in pixels and is internally multiplied by 1000. Divide this value by 1000 to obtain the real length.

puFirstIndex

Pointer to a variable to be updated with index of the first end point of the Ferets diameter.

puSecondIndex

Pointer to a variable to be updated with index of the second end point of the Ferets diameter.

uFlags

Reserved for future use. Must be 0.

Returns

SUCCESS

The function was successful.

< 1

An error occurred. Refer to Return Codes.

Comments

This function calculates the Feret's Diameter (caliper length), the longest distance between any two points along the boundary. This is equivalent to the minimum diameter of a tube through which this object can pass.

This function does not call the status callback.

Required DLLs and Libraries

LTIMGEFX

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::AddShadow, LBitmap::AllocFTArray, LBitmap::ChangeHueSatInt, LBitmap::ColorReplace, LBitmap::ColorThreshold, LBitmap::DFT, LBitmap::DirectionEdgeStatistical, LBitmap::FFT, LBitmap::FreeFTArray, LBitmap::FrqFilter, LBitmap::FrqFilterMask, LBitmap::FTDisplay, LBitmap::GetStatisticsInfo, LBitmap::GetObjectInfo, LBitmap::GetRgnContourPoints, LBitmap::GetRgnPerimeterLength, LBitmap::MathFunction, LBitmap::RevEffect, LBitmap::Segment, LBitmap::SubtractBackground, LBitmap::UserFilter, LBitmap::DirectionEdgeStatistical2

Topics:

Raster Image Functions: Analysis: Object or Region Analysis

Example

L_INT LBitmap__GetFeretsDiameterExample(LBitmap *pLeadBitmap) 
{
   L_INT nRet;
   RECT rcRect; 
   POINT  * pPoints; 
   L_UINT  uSize, uFeretsDiam, uFstIndex, uSndIndex; 
   RGNXFORM MyXForm; 
   rcRect.top = pLeadBitmap->GetHeight ()/4; 
   rcRect.bottom = pLeadBitmap->GetHeight ()*3/4; 
   rcRect.left = pLeadBitmap->GetWidth ()/4; 
   rcRect.right = pLeadBitmap->GetWidth ()*3/4; 
   
   nRet =pLeadBitmap->Region()->SetRgnEllipse (&rcRect);
   if(nRet !=SUCCESS)
      return nRet;
   nRet =pLeadBitmap->Region()->GetRgnXForm (&MyXForm);
   if(nRet !=SUCCESS)
      return nRet;
   nRet =pLeadBitmap->GetRgnContourPoints(&MyXForm,&pPoints, &uSize,0);
   if(nRet !=SUCCESS)
      return nRet;
   nRet =LBitmap::GetFeretsDiameter (pPoints, uSize, &uFeretsDiam, &uFstIndex, &uSndIndex);
   if(nRet !=SUCCESS)
      return nRet;
   return SUCCESS;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.