Hello,
I am working with cv::SolvePnp(), cv::ProjectPoints().
Given a detected marker, it is possible to get the rvec and tvec for a given 3D model.
This has been done for two types of model, a board model and a ball model. We then get three sets of tvecs/rvecs, one for the board and then two more models for the balls. As shown below.....
How do we relate these? We can project the model points into the image usings the result of solvepnp.
How do the rvecs and tvecs relate in this case? Is it possible to get the location of each ball on the board in terms of it's x,y,z location relative to the board model?
Process so far....
Detect board corners. Detect ball locations, and fit a circle. Calculate rvecs and tvecs for board and the two balls. Use projectPoints to project model into image.
Can we get more information on where the balls are on the board? The ultimate aim is collision detection once locations and velocity are determined.
Kind regards,
Daniel