I'm dealing with c and cpp files in my project. I've some data in matrix form in .cpp file now and I want to use this matrix data in .c file. As .c files don't use matrices but only .cpp files use... so, matrices can't be passed accross functions in this case.
How should I deal with such situation in openCV?