I’m writing a program using c++ and opencv lib in which I need to store data in one place for temporary convenience(so that i can access info without moving too much) and not write in a file.
So I want to create a vector of vectors of multiple objects(like 2 cv::Point3f objects) and atom data types(int, int, float, Boolean)
Is this possible to create a vector of vectors of these objects and primitive types? If yes how can I do that? If no what other options are there?
I found the solution. Those who are interested: