2 videos next to eachother
in
Core Library Questions
•
2 years ago
Probably a simple question for all the people on the forum. We are working on a kinect, we have two videostreams running... but the streams are above eachother and we would like them to be next to eachother... how can we fix this?
// create a PImage for video/depth
video_frame_ = createImage(VIDEO_FORMAT._RGB_ .getWidth(), VIDEO_FORMAT._RGB_ .getHeight(), RGB);
depth_frame_ = createImage(DEPTH_FORMAT._11BIT_.getWidth(), DEPTH_FORMAT._11BIT_ .getHeight(), RGB);
thats the code, what should we add?
1