How to save opencv data in Excel format?
I want to take some information from opencv program and then store it in a file that later can be read by microsoft excel program or even by openoffice and libreOffice.
The information that I need to save is a char variable that takes a value from a function that I wrote, and the other variable is double and represents a property that I take from the VideoCapture
class.
In the excel format I want to have a 2 column table that in the first position should be the videoCapture propery(timestamp) and the other column to have the value of the char that I want.
My question is if this can happen though saving my data in a .xml or .yml format that I can do with the use of OpenCV FileStorage
class in a way that my file is ready for reading by excel.
Anybody has any idea how do I need to save my data in the xml file ready to read from excel??