PCTSignatures Constructor (VectorOfPointF, VectorOfInt) |
http://www.emgu.com
Creates PCTSignatures algorithm using pre-generated sampling points and clusterization seeds indexes.
Namespace:
Emgu.CV.XFeatures2D
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic PCTSignatures(
VectorOfPointF initSamplingPoints,
VectorOfInt initClusterSeedIndexes
)
Public Sub New (
initSamplingPoints As VectorOfPointF,
initClusterSeedIndexes As VectorOfInt
)
public:
PCTSignatures(
VectorOfPointF^ initSamplingPoints,
VectorOfInt^ initClusterSeedIndexes
)
new :
initSamplingPoints : VectorOfPointF *
initClusterSeedIndexes : VectorOfInt -> PCTSignatures
Parameters
- initSamplingPoints
- Type: Emgu.CV.UtilVectorOfPointF
Sampling points used in image sampling. - initClusterSeedIndexes
- Type: Emgu.CV.UtilVectorOfInt
Indexes of initial clusterization seeds. Its size must be lower or equal to initSamplingPoints.size().
See Also