(Update: 2/17/2012)
Now that Core Image has been out on iOS for a while, we can talk about some hard performance numbers. I created a benchmark application as part of the testing for my GPUImage framework, and profiled the performance of raw CPU-based filters, Core Image filters, and GPUImage filters with live video feeds. The following were the times (in milliseconds) each took to apply a single sepia tone filter on a 640x480 video frame from the iPhone's camera (for two different hardware models):
iPhone 4 | iPhone 4S
------------------------------------------------
CPU 458 ms (2.2 FPS) 183 ms (5.5 FPS)
Core Image 149 ms (6.7 FPS) 23 ms (43 FPS)
GPUImage 2.5 ms (400 FPS) 1.8 ms (555 FPS)
For Core Image, this translates into a maximum of 6.7 FPS for a simple sepia tone filter on iPhone 4 and 43 FPS for the same on an iPhone 4S. This is about the simplest Core Image filter case you can set up, so I imagine anything more complex will be worse than this. This would seem to indicate that Core Image cannot do live processing fast enough to match the iPhone's camera rate on the iPhone 4 or iPhone 3G S. It can barely keep up on the iPhone 4S.
Unless I've screwed up my benchmarks (again, the source for which can be found on my GitHub repository), this is a bit of a disappointment, since I've used Core Image filters to process live video on the Mac for a while now.
However, my GPUImage framework, while currently lacking many of the capabilities of Core Image, is able to process live video without breaking a sweat on these devices, so the hardware is capable of it. Core Image must introduce a significant amount of overhead, at least on iOS 5.0.
Previous answer, for posterity:
As with any performance-related question, the answer will depend on the complexity of your filters, the image size being filtered, and the performance characteristics of the device you're running on.
Because Core Image has been available for a while on the Mac, I can point you to the Core Image Programming Guide as a resource for learning the framework. I can't comment on the iOS-specific elements, given the NDA, but I highly recommend watching the video for WWDC 2011 Session 422 - Using Core Image on iOS and Mac OS X.
Core Image (mostly) uses the GPU for image processing, so you could look at how fast OpenGL ES 2.0 shaders handle image processing on existing devices. I did some work in this area recently, and found that the iPhone 4 could do 60 FPS processing using a simple shader on realtime video being fed in at a 480 x 320. You could download my sample application there and attempt to customize the shader and / or video input size to determine if your particular device could handle this processing at a decent framerate. Core Image may add a little overhead, but it also has some clever optimizations for how it organizes filter chains.
The slowest compatible devices out there would be the iPhone 3G S and the 3rd generation iPod touch, but they're not that much slower than the iPhone 4. The iPad 2 blows them all away with its massive fragment processing power.