Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
475 views

Creating OOBB from points

How can I create minimal OOBB for given points? Creating AABB or sphere is very easy, but I have problems creating minimal OOBB. [edit] First answer didn't get me good results. I don't have huge ...
7
votes
1answer
152 views

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 ...
4
votes
4answers
865 views

3d model construction using multiple images from multiple points (kinect)

is it possible to construct a 3d model of a still object if various images along with depth data was gathered from various angles, what I was thinking was have a sort of a circular conveyor belt where ...
3
votes
0answers
72 views

3d reconstruction from 2 images without info about the camera

I'm new in this field and I'm trying to model a simple scene in 3d out of 2d images and I dont have any info about cameras. I know that there are 3 options ( cvReprojectImageTo3D -3d modelling from 2d ...
3
votes
1answer
671 views

how to find 3d position of a point with intrinsic and extrinsic parameters with opencv

i want to find a position of a point with opencv. i calibrated two cameras using cvCalibrateCamera2. so i know both intrinsic and extrinsic parameters. I read that with a known intrinsic and extrinsic ...
3
votes
2answers
341 views

Connecting points to make a triangle

If I have a set of 3d points (AKA point cloud) what is the best way to determine the groups of 3 points (triangles) I should make, to create a surface reconstruction?
3
votes
3answers
6k views

Libraries to get depth map from stereo images?

I'm going to set up some devices to perform real-time 3D motion tracking. My first idea to do so is to use a pair of cameras to take stereo image and calculate the depth map to get the 3D data I ...
2
votes
1answer
60 views

3D reconstruction C++ with OpenCV..Fundamental Matrix too large

Ok I am posting my conundrums of life to stackoverflow after 4 days of mindless programming when nothing seems to get things right or atleast close to right. sorry for being a little dramatic but I ...
2
votes
1answer
147 views

principle point in camera matrix ( programming issue)

In a 3x3 camera matrix what does the principle point do? how its location is formed? can we visualize that? It is told that the principle point is the intersection of optical axis with the image ...
2
votes
3answers
266 views

What makes object representation and recognition hard?

Intuitively, it would seem that given a dozen or so 2d images from different angles of almost any object, it should be easy to construct a 3d representation of that object. Subsequently a library of ...
2
votes
1answer
255 views

Face 3d reconstruction

I've got a webcam that rotates at given angular steps around a person's head and acquires a picture for each step. I'm searching for a free library that, starting from the set of acquired images, ...
2
votes
4answers
769 views

How do I construct a 3D model of a room from 2 stereo cameras? What is the determining factor to an accurate construction?

Currently, I have extracted depth points to construct a 3D model from 2 stereo cameras. The methods I have used are openCV graphCut method and a software from ...
1
vote
1answer
445 views

.NET integratable robust, fast solution for surface reconstruction from 3D point cloud

We have a .NET 4.0 C# WPF, machining simulation application. Right now we are stuck since we have to generate a 3D surface (mesh generation) from a point cloud. We have been searching, goggling, ...
1
vote
0answers
902 views

OpenCV 3D reconstruction using shipped images and examples

I am trying to perform a 3D reconstruction from a stereo configuration with OpenCV. For starters, I'm trying to do it on the example shipped images from OpenCV 2.2, stereo shots of a person holding a ...
0
votes
1answer
35 views

Is it possible to obtain fronto-parallel view of image or camera position by 2d-3d points relation?

Is it possible to obtain front-parallel view of image or camera position by 2d-3d points relation using OpenCV? For this I have intrinsic and extrinsic parameters. I have also 3d coordinates of set ...
0
votes
1answer
77 views

How to make rgbdemo working with non-kinect stereo cameras?

I was trying to get RGBDemo(mostly reconstructor) working with 2 logitech stereo cameras, but I did not figure out how to do it. I noticed that there is a opencv grabber in nestk library and its ...
0
votes
0answers
50 views

Earth surface reconstruction

I am trying to reconstruct earth surface from a point cloud derived from OSM data and NASA Shuttle Topography mission. Using meshlab I was able to do some surface reconstruction on some location, but ...
0
votes
1answer
426 views

surface reconstruction from 3D point cloud dealing with unwanted overlapping surface? surface normal problem

After reading the two nice posts Algorithm for simplifying 3d surface? http://stackoverflow.com/questions/838761/robust-algorithm-for-surface-reconstruction-from-3d-point-cloud I have still a ...
0
votes
0answers
154 views

Determining spatial coordinates of points in space from a photo given some information

I would like to know if it is possible to determine the coordinates of some points in space from a photograph where I know the coordinates of some other nearby points. The relationship between these ...
0
votes
2answers
591 views

Camera and projector calibration

I have a question about camera calibration. I've followed approach shown in a book Learning OpenCV for camera calibration process. But the calibrated(undistorted) image is worse than the original one. ...