I added an entry to my wiki that documents development I’m doing on Processing-based sight-to-sound mapping.
Tag: video
Processing: Video capture examples
I added some code examples my wiki that demonstrate how to do video capture in Processing using the Capture library. More examples will probably follow.
Processing: Capture is a PImage
Something the documentation on Processing’s Capture
class doesn’t mention is that Capture
is derived from PImage
. I went digging into the Capture
source code to figure that out:
public class Capture extends PImage implements PConstants { ...
This means all the methods and fields available to PImage
objects should also be available to Capture
objects. This makes video processing a lot easier!