Packagecom.transmote.flar.source
Interfacepublic interface IFLARSource
Implementors FLARCameraSource, FLARLoaderSource, FLARProxy

Interface that defines a means of updating and accessing a BitmapData instance to be analyzed by a tracking engine.



Public Properties
 PropertyDefined By
  inited : Boolean
[read-only] Returns true if initialization is complete.
IFLARSource
  mirrored : Boolean
Set to true to flip the camera image horizontally.
IFLARSource
  source : BitmapData
[read-only] Retrieve the BitmapData source used for analysis.
IFLARSource
  sourceSize : Rectangle
[read-only] Size of BitmapData source used for analysis.
IFLARSource
  trackerToDisplayRatio : Number
[read-only] Ratio of area of tracker's reported results to display size.
IFLARSource
Public Methods
 MethodDefined By
  
dispose():void
Halts all processes and frees this instance for garbage collection.
IFLARSource
  
update():void
Update the BitmapData source.
IFLARSource
Property Detail
initedproperty
inited:Boolean  [read-only]

Returns true if initialization is complete.


Implementation
    public function get inited():Boolean
mirroredproperty 
mirrored:Boolean

Set to true to flip the camera image horizontally.


Implementation
    public function get mirrored():Boolean
    public function set mirrored(value:Boolean):void
sourceproperty 
source:BitmapData  [read-only]

Retrieve the BitmapData source used for analysis. NOTE: returns the actual BitmapData object, not a clone.


Implementation
    public function get source():BitmapData
sourceSizeproperty 
sourceSize:Rectangle  [read-only]

Size of BitmapData source used for analysis.


Implementation
    public function get sourceSize():Rectangle
trackerToDisplayRatioproperty 
trackerToDisplayRatio:Number  [read-only]

Ratio of area of tracker's reported results to display size. Use to scale (multiply) results of tracker analysis to correctly fit display area.


Implementation
    public function get trackerToDisplayRatio():Number
Method Detail
dispose()method
public function dispose():void

Halts all processes and frees this instance for garbage collection.

update()method 
public function update():void

Update the BitmapData source.