将原始IOS相机数据上传到纹理

时间:2017-08-17 15:02:50

标签: c++ ios opengl-es camera render-to-texture

我们在IOS上使用AVCaptureDevice来扫描QR码。我们使用AVCaptureMetadataOutput将相机的输出传递给代码以识别QR码,目前我们还将相机显示为Open GL视图的单独视图。但是我们现在希望其他图形显示在相机预览上,因此我们希望能够将相机数据加载到我们的Open GL纹理中。

那么,有没有办法从相机中获取原始RGB数据

这是我们用来初始化捕获设备和视图的代码(下面)。

我们如何修改它以访问RGB数据,以便我们可以将其加载到我们的GL纹理之一?我们正在使用C ++ / Objective C

由于

Shaun Southern

self.captureSession = [[AVCaptureSession alloc] init];

NSError *error;
// Set camera capture device to default and the media type to video.
AVCaptureDevice *captureDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
// Set video capture input: If there a problem initialising the camera, it will give am error.
AVCaptureDeviceInput *input = [AVCaptureDeviceInput deviceInputWithDevice:captureDevice error:&error];

if (!input) 
{
    NSLog(@"Error Getting Camera Input");
    return;
}
// Adding input souce for capture session. i.e., Camera
[self.captureSession addInput:input];

AVCaptureMetadataOutput *captureMetadataOutput = [[AVCaptureMetadataOutput alloc] init];
// Set output to capture session. Initalising an output object we will use later.
[self.captureSession addOutput:captureMetadataOutput];

// Create a new queue and set delegate for metadata objects scanned.
dispatch_queue_t dispatchQueue;
dispatchQueue = dispatch_queue_create("scanQueue", NULL);
[captureMetadataOutput setMetadataObjectsDelegate:self queue:dispatchQueue];

// Delegate should implement captureOutput:didOutputMetadataObjects:fromConnection: to get callbacks on detected metadata.
[captureMetadataOutput setMetadataObjectTypes:[captureMetadataOutput availableMetadataObjectTypes]];

// Layer that will display what the camera is capturing.

self.captureLayer = [[AVCaptureVideoPreviewLayer alloc] initWithSession:self.captureSession];
[self.captureLayer setVideoGravity:AVLayerVideoGravityResizeAspectFill];

gCameraPreviewView= [[[UIView alloc] initWithFrame:CGRectMake(gCamX1, gCamY1, gCamX2-gCamX1, gCamY2-gCamY1)] retain];
[self.captureLayer setFrame:gCameraPreviewView.layer.bounds];
[gCameraPreviewView.layer addSublayer:self.captureLayer];

UIViewController * lVC = [[[UIApplication sharedApplication] keyWindow] rootViewController];
[lVC.view addSubview:gCameraPreviewView];

2 个答案:

答案 0 :(得分:1)

您不需要直接访问rgb相机帧就可以将其作为纹理,因为IOS支持比您更快的纹理缓存。

- (void) writeSampleBuffer:(CMSampleBufferRef)sampleBuffer ofType:(NSString *)mediaType pixel:(CVImageBufferRef)cameraFrame time:(CMTime)frameTime;

在回调方法中,您可以使用

下面的参数和函数生成纹理
  CVOpenGLESTextureCacheCreate(...)
  CVOpenGLESTextureCacheCreateTextureFromImage(...)

答案 1 :(得分:0)

最后我们将CMSampleBuffer转换为原始数据(因此我们可以上传到GL纹理)。这需要一点时间,但对我们的目的而言足够快。

如果有任何改进,我很高兴知道:)

肖恩

- (void)captureOutput:(AVCaptureFileOutput *)output didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection;
{
    CVImageBufferRef imageBuffer = CMSampleBufferGetImageBuffer(sampleBuffer); 
    CIImage *ciImage = [CIImage imageWithCVPixelBuffer:imageBuffer];

    if(!self.context)
    {
        self.context = [CIContext contextWithOptions:nil];  //only create this once     
    }

    int xsize= CVPixelBufferGetWidth(imageBuffer);
    int ysize= CVPixelBufferGetHeight(imageBuffer);

    CGImageRef videoImage = [self.context createCGImage:ciImage fromRect:CGRectMake(0, 0, xsize, ysize)];           
    UIImage *image = [[UIImage alloc] initWithCGImage:videoImage];
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB();

    if(!colorSpace) 
    {
        return ;
    }

    size_t bitsPerPixel = 32;
    size_t bitsPerComponent = 8;
    size_t bytesPerPixel = bitsPerPixel / bitsPerComponent;
    size_t bytesPerRow = xsize * bytesPerPixel;
    size_t bufferLength = bytesPerRow * ysize;
    uint32_t * tempbitmapData = (uint32_t *)malloc(bufferLength);

    if(!tempbitmapData) 
    {
        CGColorSpaceRelease(colorSpace);
        return ;
    }

    CGContextRef cgcontext = CGBitmapContextCreate(tempbitmapData, xsize, ysize, bitsPerComponent, bytesPerRow, colorSpace, kCGImageAlphaPremultipliedLast);    
    if(!cgcontext) 
    {
        free(tempbitmapData);
        return;
    }

    CGColorSpaceRelease(colorSpace);
    CGRect rect = CGRectMake(0, 0, xsize, ysize);
    CGContextDrawImage(cgcontext, rect, image.CGImage);                                 
    unsigned char *bitmapData = (unsigned char *)CGBitmapContextGetData(cgcontext);     // Get a pointer to the data    
    CGContextRelease(cgcontext);                                                        
    [image release];

    CallbackWithData((unsigned int *)bitmapData,xsize,ysize);               //send data

    free(bitmapData);
    CGImageRelease(videoImage);
}