We are about to switch to a new forum software. Until then we have removed the registration on this forum.
I'm trying to create a simple web application that a user can take a picture with using their webcam. At the moment I have everything figured out so that the webcam is constantly streaming the video to the canvas but I want it to save a "frame" to the app instead. Is this possible? If so, how do I do this? Also, I want to save these images in an array for now. I've tried using array.push() on the timing I want to take a picture (using mouseReleased) but that gives me an array of video streams from the webcam.
Answers
Considering that you’re making a web application and that you're using array.push(), are you using p5.js?
http://p5js.org/reference/#/p5/get
Yes, you are completely right. I posted in the wrong place and flagged my own post for it (didn't see a delete button), but you solved my problem! Thanks a lot :)