I use AVCaptureVideoDataOutputSampleBufferDelegateiPhones to display video from a camera in a custom one UIViewwith the following delegate method.
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection
I would like to get some useful information from the image, such as Exposure, color, threshold.
What is the best way to access this information?
source
share