Hello All,
I’m working on a solution where I need to specify a specific camera and render its current view and capture it. I do not necessarily need to display it. My end goal is to convert this into a matrix of shape (3, height, width) This could alternatively be thought of as 3 2d arrays of width/height where arrays are Red, Green, Blue. I need the ability to specify the camera properties as well.
Performance is a concern for me in this solution. Ideally I can do this at a specific rate, say 30 fps or so.
I am using C++ and the data will eventually be pushed out through the network.
Thanks for any tips!