Using [jit.histogram] output for color processing
Hi, I know this question might seem overtly simple, but I'm just beginning to grasp what Jitter is about and after reading some tutorials I still don't understand some basic things:
While working with jit.histogram, I've been puzzled about what the planes output tell me. What is it? RGB, ARGB, or what? How can I translate it to [swatch] RGBA?
Also, which is the best way to translate a synthesized (like 50*50 pixels from 320 240) matrix to "display" the picture in another app (e.g. Director or Flash)? I realize jit.histogram won't give me the coordinates to that, so how can I translate position and color planes for a given area?
Below is a sample patch to explain more accurately what I'm asking...
a histogram gives you the number of pixels of all 256 saturation steps of each plane.
planes 0-3 show ARGB
hth
p
Thank you sir!