OperationDescriptionFinishOperation Method |
https://www.emgu.com/wiki/index.php/Emgu_TF
If this function succeeds:
status is set to an OK value,
an Operation is added to the graph,
a non-null value pointing to the added operation is returned
-- this value is valid until the underlying graph is deleted.
Otherwise:
status is set to a non-OK value,
the graph is not modified,
a null value is returned.
In either case, it deletes the OperationDescription.
Namespace:
Emgu.TF
Assembly:
Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntaxpublic Operation FinishOperation(
Status status = null
)
Public Function FinishOperation (
Optional status As Status = Nothing
) As Operation
public:
Operation^ FinishOperation(
Status^ status = nullptr
)
member FinishOperation :
?status : Status
(* Defaults:
let _status = defaultArg status null
*)
-> Operation
Parameters
- status (Optional)
- Type: Emgu.TFStatus
The status
Return Value
Type:
OperationIf success, the Operation that is added to the graph, otherwise null.
See Also