Class ImageTrackerFrameFilter
- Namespace
- easyar
- Assembly
- EasyAR.Sense.dll
In the scene, control the easyar.ImageTracker's MonoBehaviour to provide function extension in the Unity environment.
public class ImageTrackerFrameFilter : FrameFilter
- Inheritance
-
ImageTrackerFrameFilter
Fields
TrackerMode
Tracking mode, it is only effective if modified before session starts.
public ImageTrackerMode TrackerMode
Field Value
Properties
EnableMotionFusion
Enable motion tracking. Will override SetResultPostProcessing(bool).
public bool EnableMotionFusion { get; set; }
Property Value
SimultaneousNum
The maximum number of targets that can be tracked by the tracker. Can be modified at any time and takes effect immediately.
public int SimultaneousNum { get; set; }
Property Value
Targets
The loaded ImageTargetController.
public List<ImageTargetController> Targets { get; }
Property Value
Methods
SetResultPostProcessing(bool)
Set result post-processing. Will override EnableMotionFusion. It is only effective if modified before session starts.
public void SetResultPostProcessing(bool enablePersistentTargetInstance)
Parameters
enablePersistentTargetInstance
Events
TargetLoad
The event that the Target is loaded. The bool value indicates whether the loading is successful.
public event Action<ImageTargetController, bool> TargetLoad
Event Type
TargetUnload
The event that the Target is unloaded. The bool value indicates whether the uninstall is successful.
public event Action<ImageTargetController, bool> TargetUnload