Nov 13, 2012 at 5:42pm
I'm doing a project in OpenCV. I have this variable which is of type Point2f.
cv::Point2f initial;
The value of initial is [656, 55]. Question is how do I extract these 2 numbers into 2 variables?
Nov 13, 2012 at 6:12pm
It was initial.x and initial.y
figured it out :)