Click or drag to resize

PCTSignatures Constructor (Int32, Int32, PCTSignaturesPointDistributionType)

http://www.emgu.com
Creates PCTSignatures algorithm using sample and seed count. It generates its own sets of sampling points and clusterization seed indexes.

Namespace:  Emgu.CV.XFeatures2D
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public PCTSignatures(
	int initSampleCount = 2000,
	int initSeedCount = 400,
	PCTSignaturesPointDistributionType pointDistribution = PCTSignaturesPointDistributionType.Uniform
)

Parameters

initSampleCount (Optional)
Type: SystemInt32
Number of points used for image sampling.
initSeedCount (Optional)
Type: SystemInt32
Number of initial clusterization seeds. Must be lower or equal to initSampleCount
pointDistribution (Optional)
Type: Emgu.CV.XFeatures2DPCTSignaturesPointDistributionType
Distribution of generated points.
See Also