Does anyone know a good resource related to remapping the pixels in a video in realtime using Quartz Composer? I've read through the programming guide, but it doesn't have all the information I need...thanks!
Asked
Active
Viewed 534 times
1 Answers
1
What kind of "remapping" do you have in mind?
If you have a mathematical expression for, given the location of an output pixel, determining which input pixel(s) combine to form that output pixel, then Core Image is probably what you're looking for. Check out the Core Image Kernel
patch --- feed your image data through that patch, then go to its Settings panel to customize the pixel shader.

smokris
- 11,740
- 2
- 39
- 59
-
1Awesome, I will definitely check that out right now. I have to convert between two arbitrary coordinate systems, i.e. pixel (10,10)'s data is now pixel (130, 45)'s data in the new view. – diatrevolo Jun 09 '11 at 18:50
-
So I've been having a back and forth with Apple about this, and they seem to think it won't serve my purposes. I literally need to grab a handful of pixels from one video, and display those elsewhere on another video. Whatdo you think? – diatrevolo Jul 13 '11 at 22:55