Click or drag to resize

IMcFourierDescriptorNumElements Property

Number of elements in Fourier Descriptor.

Namespace:  MediaCy.IQL.Features
Assembly:  MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
Syntax
VB
Property NumElements As Integer
	Get
	Set

Property Value

Type: Int32
Remarks
The default NumElements is 32. Assigned value must be a power of 2. The parameter defines the number of elements in the Output array and also the number of points in the object outline. The points of the outline are evenly spaced.
Examples
VB
Dim vFourierDescr
with ThisApplication.ActiveImage.RegionFeatures
'use 64 points
.maRgnFourierDescriptor.NumElements = 64
'get array of Region Descriptor values
vFourierDescr = .maRgnFourierDescriptor.Value
end with
See Also