Jump to content

3D point cloud from series of images


Recommended Posts

Good day everyone,

A few peers and I have begun development of a 3D imaging system. We have managed to complete a substantial amount of this project but have run into a few obstacles regarding the 3D reconstruction. So far we have a system that tracks an imaging device in all x, y and z coordinates. Our plan is the location data (x,y,z) of this imaging device and extract a series of points from the image that will be used as coordinates on a point cloud.

Assuming (x,y,z) = location of imaging device

Assuming (X,Y,Z) = coordinates of 3D image

Our main problem lies within the procedure to calculate these points in the point cloud. Our original plan suggested that we should use an algorithm such as the KLT feature tracker to find suitable points on the image for tracking. These points would then be paired with the location of the imaging device to get X, Y and Z of the point. After numerous iterations our system would acquire enough X, Y, Z points to produce a point cloud. This point cloud could then be rendered as a 3D object.

So my main questions lies within the pairing of these two systems. Would the KLT feature tracking algorithm be sufficient, are there other perhaps better ways of implementing this system? What short of difficulties should we expect, and how should we avoid them. If anyone has prior experience with similar systems or suggestions that would help I would greatly appreciate it.

Thank you,

Taylor S. Amarel<BR style="mso-special-character: line-break"><BR style="mso-special-character: line-break">

Link to comment

As I understand it: You have a movable object called "3D Image" on which you know local coordinates of several points. Are you tracking global coordinates of one of these points but you don't know which one exactly? What is pairing for? Please describe your system in more detailed way, possibly with pictures...

Link to comment

As I understand it: You have a movable object called "3D Image" on which you know local coordinates of several points. Are you tracking global coordinates of one of these points but you don't know which one exactly? What is pairing for? Please describe your system in more detailed way, possibly with pictures...

I apologize due to time limitations the above description is a bit rough. Anyways, the goal of our project is being able to render a 3D ultrasound image with various 2D ultrasound frames. This is how we plan to set it up; We have two cameras in a stereo configuration. These cameras will track the movements of an ultrasound probe. From the stereo configuration we will use stereoscopic triangulation to derive the position (x,y,z) of the ultrasound probe. Furthermore, we will collect the various 2D ultrasound images from the probe. These images will then be paired with the know postilion of the probe previously calculated by the camera.

After that is completed we plan to use the data (2D ultrasound images, and position of acquisition) to properly render a 3D image of the various 2D ultrasound images. Our plan was to create a point cloud from the 2D ultrasound and position of probe. The main obstacle that we are encountering with this method is how would we calculate the (X,Y,Z) points of the point cloud. My general understanding of point cloud suggests that we need to track distinguishable feature within 3D ultrasound image and pair only these feature with the probe position to create a point cloud.

The data flow would look like this

[Calculate Ultrasound Probe Position Using Two Stereoscopic Cameras] > (x,y,z)

[Acquire 2D Ultrasound Images With Ultrasound ] > (an array of 2d US images)

>>(Pair the coordinates of the probe with the corresponding image) > [Calculate the point cloud using distinguishable features within the 2D ultrasound images and track them throughout many frames) Resulting in various (X,Y,Z) coordinates of the point cloud.

This is our plan but we are unsure about how to calculate the point cloud coordinates. There are many obstacles which we have yet to overcome, for example how do we determine the distinguishable features, how do we track them throughout many frames? What happens if we loose a feature in a frame, and how would we integrate for any error?

I hope this helps explain the project adequately. I was unable to provide images because I am on my Black Berry, but they should be up soon enough.

One again any help, suggestions or knowledge regarding this project would be greatly appreciated.

Link to comment

You said that you track for (x,y,z) coordinates of the probe. Does it mean that your 2D US images are always parallel to each other? If it is not the case you have to track also orientation of the probe. And I think you should do it if the probe is being moved manually (it is rather impossible to manually move such a probe keeping 3 orientation angles with certain precision).

Next point - what is the nature of 3D information you want to calculate from subsequent frames? Do you want to have 3D volumetric image, reconstruction of surface of some object, set of iso-surfaces? Not in every case point cloud approach is really necessary. I.e. for volumetric image I would rather use some interpolation technique (if frames are dense enough). And volumetric image is good starting point for any surface extraction technique as there are many well established algorithms for it.

Link to comment

You said that you track for (x,y,z) coordinates of the probe. Does it mean that your 2D US images are always parallel to each other? If it is not the case you have to track also orientation of the probe. And I think you should do it if the probe is being moved manually (it is rather impossible to manually move such a probe keeping 3 orientation angles with certain precision).

Next point - what is the nature of 3D information you want to calculate from subsequent frames? Do you want to have 3D volumetric image, reconstruction of surface of some object, set of iso-surfaces? Not in every case point cloud approach is really necessary. I.e. for volumetric image I would rather use some interpolation technique (if frames are dense enough). And volumetric image is good starting point for any surface extraction technique as there are many well established algorithms for it.

The images are not always parallel to each other, and we are planning to track the orientation of the probe. We have devised a plan to have track 3-6 indicators on the probe using a ROI algorithm. The 6 indicators will be in a right angle orientation to allow use to devise the angle at which the probe is pointing. I've attached an image below that shows a crude outline of our system.

We have two cameras on the left, which are on the same plane. They are separated by a know distance to allow triangulation of the 6 different indicators on the probe. These indicators are marked in red. The probe is going to be controlled by freehand to acquire images of the object. These freehand images will then be processed to and correlated to the position at acquisition time to hopefully produce a 3D volumetric image. Unfortunately we have limited experience in this 3D construction from 2D images. I will look into the interpolation techniques and see what I can find. Do you know of any resources or links that would explain these methods?

Your help is highly appreciated, many thanks.

Taylor S. Amarel

post-17883-062058400 1279727202_thumb.jp

Link to comment

It is very specific problem for spatial interpolation, because of nature of source data. It is hard to put any general algorithm, however you may check for Kriging or Natural Neighbor Interpolation. But I would rather develop custom algorithm based on known geometrical relations between 2D sections dipped in 3D space.

[EDIT]]

I think that you may be interested in this

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.