We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Using Kinect for an interface and want to be able to use the kinect to take pictures as the sequence plays. Think photo booth, so the user is dancing and the kinect is using their motion as a means of enhancing the visualization, but I also want to write what the Kinect RGB camera is seeing and save it multiple times so I can print out the photo each time it saves.
I can output one image, but not multiple over time.
Many thansk!
Answers
My recollection is that you get the RGB image as a
PImage
: PImage rgb= kinect.rgbImage(); Would using an array ofPImages
which you fill as many times as you need work? e.g. if you have an array namedimages
of sizenumberOfImages
:Then you can access them with
Does that make sense? Have I understood your issue correctly?