I have a vector of pair-value which contains the coordinates of some points.
Coordinates.push_back(std::make_pair(row,col));
I want to plot them with different colors in real-time.
this "cvPoint function"value in Opencv does not accept any vector as an input for plotting.
should I found another library to plot them?