Package org.opencv.video
Class TrackerVit
- java.lang.Object
-
- org.opencv.video.Tracker
-
- org.opencv.video.TrackerVit
-
public class TrackerVit extends Tracker
the VIT tracker is a super lightweight dnn-based general object tracking. VIT tracker is much faster and extremely lightweight due to special model structure, the model file is about 767KB. Model download link: https://github.com/opencv/opencv_zoo/tree/main/models/object_tracking_vittrack Author: PengyuLiu, [email protected]
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedTrackerVit(long addr)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrackerVit__fromPtr__(long addr)static TrackerVitcreate()Constructorstatic TrackerVitcreate(TrackerVit_Params parameters)Constructorprotected voidfinalize()-
Methods inherited from class org.opencv.video.Tracker
getNativeObjAddr, getTrackingScore, init, update
-
-
-
-
Method Detail
-
__fromPtr__
public static TrackerVit __fromPtr__(long addr)
-
create
public static TrackerVit create(TrackerVit_Params parameters)
Constructor- Parameters:
parameters- vit tracker parameters TrackerVit::Params- Returns:
- automatically generated
-
create
public static TrackerVit create()
Constructor- Returns:
- automatically generated
-
-