获取AVCaptureSession samplebuffer 一像素的 rgb值

本文详细介绍了如何从AVCaptureSession中获取samplebuffer中一像素的rgb值,包括数据类型定义和核心代码实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

获取AVCaptureSession samplebuffer 一像素的 rgb值

typedef unsigned char byte;
typedef struct RGBPixel{
    byte red, green, blue;
} RGBPixel;

- (void)captureOutput:(AVCaptureOutput *)captureOutput 
didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer 
       fromConnection:(AVCaptureConnection *)connection 
{ 
    
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer);
    CVPixelBufferLockBaseAddress(imageBuffer,0);
    
    size_t bytesPerRow = CVPixelBufferGetBytesPerRow(imageBuffer);
    size_t width = CVPixelBufferGetWidth(imageBuffer);
    size_t height = CVPixelBufferGetHeight(imageBuffer);
    uint8_t *src_buff = (uint8_t*)CVPixelBufferGetBaseAddress(imageBuffer);
    
    CVPixelBufferUnlockBaseAddress(imageBuffer, 0);
    RGBPixel *pixelData = (RGBPixel *)src_buff;

    int len = bytesPerRow * height;
    for(int i=0; i<len; i+=4){
        
        RGBPixel pixel = pixelData[i/4];
        
        int a = 0;
        int r = pixel.red;
        int g = pixel.green;
        int b = pixel.blue;

        NSLog(@"first values = r:%d g:%d b:%d", r, g, b);
        
        a = src_buff[i+3];
        r = src_buff[i+2];
        g = src_buff[i+1];
        b = src_buff[i];

        NSLog(@"second values = r:%d g:%d b:%d", r, g, b);
 
    }

}

 

如果是BGRA

typedef struct RGBPixel{
    byte blue, green, red;
} RGBPixel;

 

参考:http://iphonedevsdk.com/forum/iphone-sdk-development/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值