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?
| |||
|
feedback
|
CVPixelBufferGetBaseAddressis 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