OperationDescriptionFinishOperation Method |
http://www.emgu.com
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.World (in Emgu.TF.World.dll) Version: 1.13.1.435 (1.13.1.435)
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