[jitter] Re: tracking pixels in a matrix and output as individual numbers or list
Robert Ramirez
rob at robtherich.org
Sat Mar 1 16:42:03 MST 2008
- Previous message: [jitter] Re: tracking pixels in a matrix and output as individual numbers or list
- Next message: [jitter] Re: tracking pixels in a matrix and output as individual numbers or list
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
entirely depends on what you're trying to do. if you need to keep the cell coord info, i would use jit.iter, otherwise, you can stick a normal iter after the jit.spill. each cell value comes through, sel 255 will send a bang if it's "active" and you can send that bang wherever you want. or if you need to process the whole list in some way, look at the zl object or the listops objects. if you just want to see the state of your matrix, hook it up to a jit.cellblock, couldn't be easier. -rob
- Previous message: [jitter] Re: tracking pixels in a matrix and output as individual numbers or list
- Next message: [jitter] Re: tracking pixels in a matrix and output as individual numbers or list
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
