MultiTrackerUpdate Method (InputArray, Rect2d)
|
Update the current tracking status.
Namespace:
OpenCvSharp.Tracking
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic 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
function Update(image, boundingBox);
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
See Also