#import <ARCameraStream.h>
The ARCameraStreamEvents are a set of events that fire when the ARCamera receives a new frame.
| - (void) didReceiveNewFrame: |
|
(NSData *) |
data |
| timeStamp: |
|
(NSTimeInterval) |
timeStamp |
|
|
| |
|
optional |
Event fired when the camera receives a new frame.
- Parameters
-
| data | Contains the camera image data buffer in the format defined by cameraDataFormat. |
| timeStamp | The time the frame was captured. |
Reimplemented in ARCameraView.
| - (void) didReceiveNewFrameWithLuma: |
|
(NSData *) |
lumaData |
| chroma: |
|
(NSData *) |
chromaData |
| timeStamp: |
|
(NSTimeInterval) |
timeStamp |
|
|
| |
|
optional |
Event fired when the camera received a new colour frame.
- Parameters
-
| lumaData | Contains the camera image data buffer containing the luma component channel. |
| chromaData | Contains the camera image data buffer containing the blue-difference and red-difference chroma component interleaved channels in a biplanar buffer. |
| timeStamp | The time the frame was captured. |
The documentation for this protocol was generated from the following file: