Controls a segmentation texture and its placement using information provided by Object tracking.

interface ObjectTrackingTextureProvider {
    inputTexture: Texture;
    objectIndex: number;
    getAspect(): number;
    getHeight(): number;
    getLoadStatus(): LoadStatus;
    getTypeName(): string;
    getWidth(): number;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

inputTexture: Texture

Input texture to crop.

objectIndex: number

Methods