Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

3d reconstruction from axis-aligned photos

Having poked through the other threads on this topic, I believe there may be a reasonably simple answer to my question. I'm given a collection of six axis-aligned photographs of an object, such as this:

http://www.flickr.com/photos/nnenn/4479290754/in/photostream

Are there any algorithms that would reconstruct a 3d approximation of this object? One thing that I tried with marginal success was to create six 3-dimensional "prisms" (one for each picture) that are infinite in the x-, y-, or z-direction, and take the intersection of these. This works OK, but it's a bit sensitive to the inputs and I'd like to know if there's something more robust that's well-known. I should add that I expect that some manual intervention is clearly going to be required, but I'd like to know how to minimize the amount of such intervention necessary.

One subroutine that might be useful is something like the following: suppose I were to take each pixel in the six photos and identify it to a component, so e.g. all pixels belonging to the cockpit were labelled "1", all pixels belonging to the leftmost missile were labelled "2", and so forth. Would this help in the reconstruction?

Thanks!

like image 933
user771871 Avatar asked May 26 '11 18:05

user771871


People also ask

How are 3D images reconstructed?

3D reconstructions can be obtained by directly interfering with the environment using light projectors. Active reconstruction systems that include an integrated RGB camera are called RGB-D sensors as both a color and a depth value can be associated with each image pixel.

What is image based 3D reconstruction?

3D reconstruction from multiple images is the creation of three-dimensional models from a set of images. It is the reverse process of obtaining 2D images from 3D scenes.

Can you perform 3D reconstruction based on a single image?

The reconstruction of 3D object from a single image is an important task in the field of computer vision. In recent years, 3D reconstruction of single image using deep learning technology has achieved remarkable results.

What is dense 3D reconstruction?

Definition. Dense reconstruction aims on determining the complete 3D geometry of a static environment solely from a set of provided images.


1 Answers

This is almost a textbook example for a "space carving" or volume intersection solution. Here is a reasonable introduction to the paper.

like image 142
Throwback1986 Avatar answered Sep 26 '22 23:09

Throwback1986