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

Hello I am using your GPUImage framework (downloaded in mid 2012). The task is to read samlebuffer from capture session and apply a rotation filter (to work in different device orientations). So the process is as follows:

CMSamplebuffer (AVCaptureSessionPresetHigh 1920 x 1080) saved as output texture -> Rotation filter -> GPUImageView

The result is perfect in all orientations of device for all resolutions when it is rendered on GPUImageView. Another task is to grab the result of rotation filter FBO from its texture cache and save in a buffer. Yes it is working by setting prepareForCaptureImage to rotation filter.

The problem what i have is the result is a distorted image when i work in 1920 x 1080 resolution after grabbing from FBO of rotation filter (Only in potrait mode). In land scape the result is perfect. Only in this special case 1920 x 1080 potrait mode it is not working. The result what is see on GpuimageView is perfect but when i try to grab it from FBO its not good in potrait. I do not understand why. After debugging a little i have found that in rotation filter in setInputSize function in potrait mode you are swapping the width and height. When i comment out this swapping i am able to grab the valid image from FBO ofcourse with the wrong orientation.

Please help me in this regard. Thanks!

share|improve this question
As I commented in your email about this, it looks like you're using a very outdated version of the framework. Try this with the latest code in the repository. – Brad Larson Nov 26 '12 at 18:22

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.