Click or drag to resize

GraphGetOpNames Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Get the names of the operations

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public void GetOpNames(
	HashSet<string> opNames = null,
	HashSet<string> potentialInputs = null,
	HashSet<string> potentialOutputs = null
)

Parameters

opNames (Optional)
Type: System.Collections.GenericHashSetString
If provided, this HashSet will be filled with names of operations
potentialInputs (Optional)
Type: System.Collections.GenericHashSetString
If provided, this HashSet will be filled with names of operations that may be a input operation.
potentialOutputs (Optional)
Type: System.Collections.GenericHashSetString
If provided, this HashSet will be filled with names of operations that may be an output operation.
See Also