@Namespace(value="cv") @Properties(inherit=opencv_tracking.class) public class TrackerTLD extends Tracker
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.
Modifier and Type | Class and Description |
---|---|
static class |
TrackerTLD.Params |
Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator, Pointer.ReferenceCounter
Constructor and Description |
---|
TrackerTLD(Pointer p)
Pointer cast constructor.
|
Modifier and Type | Method and Description |
---|---|
static TrackerTLD |
create() |
static TrackerTLD |
create(TrackerTLD.Params parameters)
\brief Constructor
|
init, init, init, read, update, update, update, write
clear, empty, getDefaultName, position, save, save, write, write
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 TrackerTLD(Pointer p)
Pointer.Pointer(Pointer)
.@opencv_core.Ptr public static TrackerTLD create(@Const @ByRef TrackerTLD.Params parameters)
parameters
- TLD parameters TrackerTLD::Params@opencv_core.Ptr public static TrackerTLD create()
Copyright © 2020. All rights reserved.