Accurately measuring relative distance between a set of fiducials (Augmented reality game application)

Started by
3 comments, last by jkh13 12 years, 4 months ago
[font=Arial,]

Let's say I have a set of 5 markers. I am trying to find the relative distances between each marker using an augmented reality framework such as ARToolkit. In my camera feed thee first 20 frames show me the first 2 markers only so I can work out the transformation between the 2 markers. The second 20 frames show me the 2nd and 3rd markers only and so on. The last 20 frames show me the 5th and 1st markers. I want to build up a 3D map of the marker positions of all 5 markers.

My question is, knowing that there will be inaccuracies with the distances due to low quality of the video feed, how do I minimise the inaccuracies given all the information I have gathered?

My naive approach would be to use the first marker as a base point, from the first 20 frames take the mean of the transformations and place the 2nd marker and so forth for the 3rd and 4th. For the 5th marker place it inbetween the 4th and 1st by placing it in the middle of the mean of the transformations between the 5th and 1st and the 4th and 5th. This approach I feel has a bias towards the first marker placement though and doesn't take into account the camera seeing more than 2 markers per frame.

Ultimately I want my system to be able to work out the map of x number of markers. In any given frame up to x markers can appear and there are non-systemic errors due to the image quality.

Any help regarding the correct approach to this problem would be greatly appreciated.

[/font]

Advertisement
If you see only two markers at a time, how can you know anything about their relative position? Even if you learn something about their relative position, do you learn anything more than a distance? How do you estimate the angle between the first second and third points if you never see them together?

I don't have any experience in this kind of thing, but it sounds like you don't have enough information to reconstruct anything.

If you see only two markers at a time, how can you know anything about their relative position? Even if you learn something about their relative position, do you learn anything more than a distance? How do you estimate the angle between the first second and third points if you never see them together?

I don't have any experience in this kind of thing, but it sounds like you don't have enough information to reconstruct anything.


I will know the scale and orientation of each marker as well, each marker is a regular square with the same area size so I can estimate its pose relative to the camera and place it in 3D space. I can extract the 3D transformation between the markers from this.


Oh, I see. I thought markers were effectively points. Thanks for the explanation. And sorry I don't have anything valuable to contribute.

Oh, I see. I thought markers were effectively points. Thanks for the explanation. And sorry I don't have anything valuable to contribute.


Np :), you helped make the question easier to understand.

This topic is closed to new replies.

Advertisement