| MultiTrackerUpdate Method (InputArray, Rect2d) |
Update the current tracking status.
Namespace:
OpenCvSharp.Tracking
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public bool Update(
InputArray image,
out Rect2d[] boundingBox
)
Public Function Update (
image As InputArray,
<OutAttribute> ByRef boundingBox As Rect2d()
) As Boolean
public:
bool Update(
InputArray^ image,
[OutAttribute] array<Rect2d>^% boundingBox
)
member Update :
image : InputArray *
boundingBox : Rect2d[] byref -> bool
Parameters
- image
- Type: OpenCvSharpInputArray
input image - boundingBox
- Type: OpenCvSharpRect2d
the tracking result, represent a list of ROIs of the tracked objects.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:OpenCvSharp.Tracking.MultiTracker.Update(OpenCvSharp.InputArray,OpenCvSharp.Rect2d[]@)"]
See Also