is there a interface in fobs to decode a video frame. that means when there are two parameters in the entrance funtion, one is input videoframe, the other is output file?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I guess you're talking about the fobs C++ API. You won't find a function like this, but you surely have others that may help you such as:
getLuminance()
getRGB()
getRGBA()
All of them return a byte array containing the pixels of the frames in different formats (Luminance channel, RGB, RGBA). It's your work to save this info into a file using the format you need (.gif, .jpeg, etc).
Cheers.
Jose San Pedro
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
is there a interface in fobs to decode a video frame. that means when there are two parameters in the entrance funtion, one is input videoframe, the other is output file?
Hi,
I guess you're talking about the fobs C++ API. You won't find a function like this, but you surely have others that may help you such as:
getLuminance()
getRGB()
getRGBA()
All of them return a byte array containing the pixels of the frames in different formats (Luminance channel, RGB, RGBA). It's your work to save this info into a file using the format you need (.gif, .jpeg, etc).
Cheers.
Jose San Pedro