views:

33

answers:

3

Does anyone know how to tell core image to process a CIImage through a CIFilter using the CPU instead of the GPU? I need to process some very large images and I get strange results using the GPU. I don't care how long it takes to CPU will be fine.

A: 

Not an answer, but you always can re-write CIkernel as function which operates on pixel RGB value, and after that apply that function in a loop on unsigned char [] data of image and convert result to CIImage.

0x69
A: 

This is an interesting idea. Could you point me to an example or any sor of documentation on this? I'm a bit confused about how this would be implemented. Thanks!

Dr144