![]() |
KudanAR - iOS
1.6.0
|
#import <ARCameraStream.h>
Inherits <NSObject>.
Inherited by ARCameraView.
Instance Methods | |
(void) | - didReceiveNewFrame:timeStamp: |
(void) | - didReceiveNewFrameWithLuma:chroma:timeStamp: |
The ARCameraStreamEvents are a set of events that fire when the ARCamera receives a new frame.
|
optional |
Event fired when the camera receives a new frame.
data | Contains the camera image data buffer in the format defined by cameraDataFormat. |
timeStamp | The time the frame was captured. |
Reimplemented in ARCameraView.
|
optional |
Event fired when the camera received a new colour frame.
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. |