I don't think this is a terribly difficult effect, but I'm having trouble translating all the examples I find in Quartz Composer into code that could be used in an iOS app.
I've found https://github.com/lukabernardi/LBBlurredImage as an example for a blur effect. That code all seems to make sense. (Except... Quartz Composer creations seem to require a "Crop Image" step that seems to be missing from the code, and I'm not sure why.)
The effect I would like to create (and implement as a category method, as the above does) I can only describe in terms of a Photoshop filter. I would like to take a CIImage, offset that image by x and y pixels (repeating the edge pixels, not wrapping), and then overlay the new image at 50% opacity on top of the original image, thereby creating a "double vision" type effect.

I'm not asking anyone to write this for me, but I'm having trouble even seeing where to start. Creating a patch in Quartz Composer seems... odd, and even if I successfully do that, I'm not sure how to turn that into code. I'm sure some of my difficulty lies in the fact that I have run Photoshop for more than a decade, and I don't think my image processing vocabulary aligns with Apple's. Can anyone point me in the right direction?
EDIT: Upon further research, it seems that CoreImage might not be the best for what I need. Brad Larsen's GPUImage might work for what I'd like to do. Has anyone written an offset (repeating edge pixels) filter for GPUImage (or can give a pointer or two on how I might do such a thing?)
UIImageViews. The 1st is the superview with bounds set to the overall size you want. The 2nd image view has the original image, and 3rd image view has the original again but with an adjusted alpha. 2nd is subview of 1st with 0,0 origin, and 2nd is also subview of 1st but with x,y origin. Then render 1st image view layer in new image context. Can provide code example if you'd like. – bobnoble Dec 29 '12 at 2:02