Hello!! I am using Opencv with C++ and I want to Store a Mat of size (1920*1080) and use that in another program. The options that I have:
I could store the Mat data as an Image and can access it in another program or I can store all the values in a file and can access it. But, the most important thing in my implementation is speed as I need to process 60 frames in a second.
I can take all the values in a header and could initialise to a Mat but it keeps on building the program and I haven't looked at the performance.
I am looking for a Solution to access the Mat very efficiently. Thank you in Advance!!