Skip to content

Instantly share code, notes, and snippets.

@jebai
Last active June 8, 2019 19:38
Show Gist options
  • Save jebai/8108287 to your computer and use it in GitHub Desktop.
Save jebai/8108287 to your computer and use it in GitHub Desktop.
- (void) parseBuffer:(CMSampleBufferRef) sampleBuffer
{
CVImageBufferRef pixelBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
CVPixelBufferLockBaseAddress( pixelBuffer, 0 );
//Processing here
int bufferWidth = CVPixelBufferGetWidth(pixelBuffer);
int bufferHeight = CVPixelBufferGetHeight(pixelBuffer);
unsigned char *pixel = (unsigned char *)CVPixelBufferGetBaseAddress(pixelBuffer);
// put buffer in open cv, no memory copied
cv::Mat mat = cv::Mat(bufferHeight,bufferWidth,CV_8UC4,pixel);
//End processing
CVPixelBufferUnlockBaseAddress( pixelBuffer, 0 );
}
@LiLejia
Copy link

LiLejia commented Jun 8, 2019

@mabounassif This piece expects RGB instead of YUV.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment