@Namespace(value="cv") @Properties(inherit=opencv_tracking.class) public class MultiTrackerTLD extends MultiTracker_Alt
TLD is a novel tracking framework that explicitly decomposes the long-term tracking task into tracking, learning and detection.
The tracker follows the object from frame to frame. The detector localizes all appearances that have been observed so far and corrects the tracker if necessary. The learning estimates detector's errors and updates it to avoid these errors in the future. The implementation is based on \cite TLD .
The Median Flow algorithm (see cv::TrackerMedianFlow) was chosen as a tracking component in this implementation, following authors. The tracker is supposed to be able to handle rapid motions, partial occlusions, object absence etc.
Tracker, MultiTracker, TrackerTLD
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
Constructor and Description |
---|
MultiTrackerTLD()
Default native constructor.
|
MultiTrackerTLD(long size)
Native array allocator.
|
MultiTrackerTLD(Pointer p)
Pointer cast constructor.
|
Modifier and Type | Method and Description |
---|---|
MultiTrackerTLD |
position(long position) |
boolean |
update_opt(GpuMat image) |
boolean |
update_opt(Mat image)
\brief Update all trackers from the tracking-list, find a new most likely bounding boxes for the targets by
optimized update method using some techniques to speedup calculations specifically for MO TLD.
|
boolean |
update_opt(UMat image) |
addTarget, addTarget, addTarget, boundingBoxes, boundingBoxes, colors, colors, targetNum, targetNum, trackers, trackers, update, update, update
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, put, realloc, referenceCount, releaseReference, retainReference, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zero
public MultiTrackerTLD()
public MultiTrackerTLD(long size)
Pointer.position(long)
.public MultiTrackerTLD(Pointer p)
Pointer.Pointer(Pointer)
.public MultiTrackerTLD position(long position)
position
in class MultiTracker_Alt
@Cast(value="bool") public boolean update_opt(@ByVal Mat image)
image
- The current frame.
Copyright © 2020. All rights reserved.