Click or drag to resize

GraphNearestNeighbors Method

https://www.emgu.com/wiki/index.php/Emgu_TF
NearestNeighbors

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation NearestNeighbors(
	Output points,
	Output centers,
	Output k,
	string opName = "NearestNeighbors"
)

Parameters

points
Type: Emgu.TFOutput
Input to the operation.
centers
Type: Emgu.TFOutput
Input to the operation.
k
Type: Emgu.TFOutput
Input to the operation.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] nearest_center_indices(type: DtInt64). [1] nearest_center_distances(type: DtFloat).
See Also