Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using the GPUImage Framework to my project. I create a class named GPUImageSixInputFilter, similar to GPUImageTwoInputFilter which can have a GPUImageFilter with six input. What I want to do is, add the 6 consecutive video frames to the GPUImageSixInputFilter. I know GPUImageBuffer can help, but after I create a GPUImageBuffer with size 6 and add the GPUImageVideoCamera to the buffer, how do I access the buffer and add the 6 frame to the filter?

GPUImageVideoCamera *videoCamera = [[GPUImageVideoCamera alloc]
            initWithSessionPreset:AVCaptureSessionPresetLow 
                   cameraPosition:AVCaptureDevicePositionBack];

videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait;

GPUImageSixInputFilter *sixInputFilter = [[GPUImageSixInputFilter alloc]
         initWithFragmentShaderFromFile:@"SixInputFilter"];

GPUImageBuffer *imageBuffer = [[GPUImageBuffer alloc] init];

[imageBuffer setBufferSize:6];

[videoCamera addTarget:imageBuffer];

// Code Here: To add the 6 frame in the imageBuffer to the sixInputFilter

[videoCamera startCameraCapture];
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.