I am trying to find the x and y coordinates of detected fiducials from Processing BoofCV.
Code: https://github.com/lessthanoptimal/BoofProcessing/tree/master/examples/Fiducials
From the above example, i did this to get the X and Y coordinates.
for( FiducialFound f : found ) {
detector.render(this,f);
println(f.getFiducialToCamera().getTranslation().getX() + " " + f.getFiducialToCamera().getTranslation().getY())
}
But the returned values seem odd.
Can someone point me at the right direction? Thanks in advance.
Regards S