| Package | de.popforge.imageprocessing.capture |
| Interface | public interface ICaptureDevice |
| Implementors | WebCam |
| Method | Defined by | ||
|---|---|---|---|
|
getCurrentFrame():BitmapData
Returns a reference to the current frame.
| ICaptureDevice | ||
|
getPreviousFrame():BitmapData
Returns a reference to the previous frame.
| ICaptureDevice | ||
|
toString():String
This function has to be implemented and returns a string with class specific properties.
| ICaptureDevice | ||
| getCurrentFrame | () | method |
public function getCurrentFrame():BitmapDataReturns a reference to the current frame. It is forbidden to use BitmapData.dispose() with such a reference.
ReturnsBitmapData — A BitmapData object which is reused for every new frame.
|
| getPreviousFrame | () | method |
public function getPreviousFrame():BitmapDataReturns a reference to the previous frame. It is forbidden to use BitmapData.dispose() with such a reference.
ReturnsBitmapData — A BitmapData object which is reused for every new frame.
|
| toString | () | method |
public function toString():StringThis function has to be implemented and returns a string with class specific properties.
ReturnsString — A string listing class specific properties.
|