Package | com.transmote.flar.source |
Interface | public interface IFLARSource |
Implementors | FLARCameraSource, FLARLoaderSource, FLARProxy |
Property | Defined 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 | ||
sourceDirty : Boolean [read-only]
Returns true if the source has changed enough to perform tracking again. | 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 |
Method | Defined By | ||
---|---|---|---|
dispose():void
Halts all processes and frees this instance for garbage collection. | IFLARSource | ||
update():void
Update the BitmapData source. | IFLARSource |
inited | property |
inited:Boolean
[read-only]
Returns true
if initialization is complete.
public function get inited():Boolean
mirrored | property |
mirrored:Boolean
Set to true
to flip the camera image horizontally.
public function get mirrored():Boolean
public function set mirrored(value:Boolean):void
source | property |
source:BitmapData
[read-only]
Retrieve the BitmapData
source used for analysis.
NOTE: returns the actual BitmapData
object, not a clone.
public function get source():BitmapData
sourceDirty | property |
sourceDirty:Boolean
[read-only]
Returns true
if the source has changed enough to perform tracking again.
public function get sourceDirty():Boolean
sourceSize | property |
sourceSize:Rectangle
[read-only]
Size of BitmapData
source used for analysis.
public function get sourceSize():Rectangle
trackerToDisplayRatio | property |
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.
public function get trackerToDisplayRatio():Number
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.