I noticed that accessing the pixels returned by CVPixelBufferGetBaseAddress directly (I'm using two nested for-loops) is about 100 times slower than first allocating a buffer with malloc, memcpy the pixels into that buffer and then accessing the pixels in that buffer. Why is that?

link|improve this question

58% accept rate
I have not noticed this. I use this to flip images in real time coming from the camera. Are you locking the address? CVPixelBufferLockBaseAddress. – Steve McFarlin May 6 '11 at 1:36
Yes, I use CVPixelBufferLockBaseAddress. – Dominik Seibold May 9 '11 at 19:18
Could this be that the memory that is returned from CVPixelBufferGetBaseAddress is on the camera chip rather than the main system memory and the camera chip's memory access is slower? – mattjgalloway Nov 27 '11 at 23:26
feedback

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

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.