IMcFourierDescriptorNormalizeFlags Property
|
|
Normalization flags of Fourier Descriptor.
Namespace:
MediaCy.IQL.Features
Assembly:
MediaCy.IQL.Features (in MediaCy.IQL.Features.dll) Version: 10.0.6912.0
SyntaxProperty NormalizeFlags As mcfdNormalizeFlags
Get
Set
Property Value
Type:
mcfdNormalizeFlags
RemarksThe primary use for this transform is to normalize boundary shapes for
translation, scale and/or rotation. This is accomplished by setting the values of
NormalizeFlags to one or combination of mcfdNormalizeFlags values. Note that
mcfdNormalizeRotation is ignored when OutputType is set to mcfdMagnitudeOnly, because
Magnitude spectrum is already normalized by rotation as a result of FFT transform.
ExamplesDim vFourierDescr
with ThisApplication.ActiveImage.RegionFeatures
.maRgnFourierDescriptor.NormalizeFlags = mcfdNormalizeRotation Or mcfdNormalizeScale
.maRgnFourierDescriptor.OutputType = mcfdRealImaginary
.maRgnFourierDescriptor.NumElements = 64
vFourierDescr = .maRgnFourierDescriptor.Value
end with
See Also