Triangulation is either using angular measurements along a baseline to find the location of points, or splitting a polygon into triangles so that it can be rendered by a graphics library.
0
votes
0answers
7 views
Tetgen tetcall compiling error
I want to use Tetgen to calculate the volume of a given set of points by tetrahedralization. I already saw a snippet in the code doing this, and might only requires some tweaking.
The problem I have ...
0
votes
1answer
25 views
Locational triangulation
I have data about 10 point in a 2D map, I know the location of points 1,2 and 3. I also know the distance between point 1,2 and 3 to all other points.
I know that cell phone uses distance from gsm ...
0
votes
0answers
45 views
Image-based reconstruction using triangulation
I'm currently trying to implement the triangulation algorithm proposed by Hartley and Sturm (here) and I'm having some difficulties. I think I understand the idea behind it, but I'm not sure how to ...
-3
votes
2answers
88 views
Wifi position triangulation
I need to understand how Wifi triangulation basically works. The scene is as portrayed in above diagram. Inorder to implement wifi triangulation, I need a minimum of 3 Wifi hotspots and their ...
-1
votes
0answers
26 views
what is the triangulation algorithm used in A-GPS system--(assisted GPS ) [closed]
what is the triangulation algorithm used in A-GPS system--(assisted GPS ).and What is the trainagulation algorithm used by Navizon ITS.
0
votes
1answer
96 views
How to correctly use cv::triangulatePoints()
I am trying to triangulate some points with opencv and I found this cv::triangulatePoints() function. The problem is that there is almost no documentation or examples of it (on the whole internet! how ...
1
vote
2answers
140 views
Delaunay triangulation makes me lose symmetry
I am using Delaunay triangulation to split polygons into triangles. I work on FEM with a large code, and one of my "checkpoints" is symmetry (if the data is symmetric, the output has to be symmetric ...
0
votes
1answer
99 views
Trilateration and locating the point (x,y,z)
I want to find the coordinate of an unknown node which lie somewhere in the space which has its reference distance away from 3 or more nodes which all of them have known coordinate.
This problem is ...
1
vote
1answer
80 views
how can i get the camera projection matrix out of calibrateCamera() return values
I am trying to get a 3x4 camera matrix for triangulation process but calibrateCamera() returns only 3x3 and 4x1 matrices.
How can i get the 3x4 out of those matrices?
Thanks in advance!!
4
votes
2answers
171 views
Robust, fast complex polygon (with holes) triangulation c/c++ library with permissive license
I am a developer of the open-source game, Bitfighter. As per the following SO post, we have used the excellent 'Triangle' library for mesh-zone generation for use with our in-game AI (robots):
...
0
votes
0answers
64 views
BlackBerry Location from Cell Tower
I am trying to get location in BlackBerry based on the cell tower information. It seemed to be working fine but has suddenly stopped working. I am calling a thread in my constructor so the location is ...
3
votes
4answers
168 views
How to find delaunay triangulation facets containing the given points
I have plotted n random points (the black points) and used delaunay triangulation, now I want to interpolate m random evaluation points (the red points) so I need to calculate which triangle the ...
0
votes
0answers
117 views
how to create delaunay triangulation
I need help in my code, I have 2 segmented image, it will be loaded as volume, and I need to compute the delaunay triangulation from the points inside volume, I tried to use isosurface and ...
0
votes
0answers
54 views
Get all the points of a geosphere in Matlab
I have created a geosphere, and now I want to be able to choose a slice and see the circle drawn in that slice by the geopshere. the problem is that only the coincident vertices's in that slice are ...
0
votes
0answers
86 views
Wifi triangulation for android
I am trying to use wifi triangulation in an app that I am making and I think I am after biting off more than I can handle.
The app will allow users to see where in a building they are (the building ...
0
votes
3answers
232 views
Points cloud Triangulation algorithm
I would like to create a simple C++ application that, given 100 random points (with their convex hull) it will triangulate this points' cloud. I've searched for this subject and I can see that ...
1
vote
0answers
125 views
3D reconstruction using stereo vison - theory
I am currently reading into the topic of stereo vision, using the book of Hartley&Zimmerman alongside some papers, as I am trying to develop an algorithm capable of creating elevation maps from ...
0
votes
1answer
57 views
Fast triangulation in PCL
I want to to triangulate Point Cloud after applying Passthrough filter to them.
It compiles but the viewer shows nothing.
Here is my source code :
#include <boost/thread/thread.hpp>
...
0
votes
1answer
148 views
Rotation matrix R1 w.r.t to another matrix, say R2
I have two camera rotation matrices R1 and R2. Both of them are calculated w.r.t. a reference frame.
My ultimate goal is to perform stereo 3D triangulation using the corresponding features from these ...
0
votes
0answers
74 views
A user friendly interface for Ternary Diagram (C++ and C#)
Does anybody know how to public a user friendly interface or code. I have just developed an interface to plot ternary diagrams. I know there are softwares that can do the same but with this one users ...
1
vote
1answer
122 views
Minimum Weight Triangulation Taking Forever
so I've been working on a program in Python that finds the minimum weight triangulation of a convex polygon. This means that it finds the weight(The sum of all the triangle perimeters), as well as the ...
0
votes
1answer
441 views
Minimum Weight Triangulation Dynamic Programming Algorithm
So, I'm trying to understand the dynamic programming algorithm for finding the minimum weighted triangulation decomposition of a convex polygon. For those of you that don't know, triangulation is ...
0
votes
0answers
62 views
How to store neighbors of a triangle in java in Delaunay Triangulation?
I am trying to implement Delaunay triangulation using randomized incremental algorithm java, and now i am really confused in storing the neighbor triangles and also the edge they are sharing with each ...
0
votes
1answer
20 views
Triangulation meshing activation control
I am wondering if anyone knows about the triangulation meshing. I really need a activation control in C# which can do meshing. If any one could help me to find a good one, I would be so appreciative. ...
0
votes
1answer
103 views
How can I compile GNU Triangulated Surface Library GTS in windows for Visual Studio C++ project?
How can I install/build/compile GNU Triangulated Surface Library GTS using visual studio 2010 c++ under windows platform. I want to use gts library in my visual studio c++ project.
I tried a lot but ...
1
vote
2answers
266 views
Delaunay triangle OpenCV
I was wondering if it is at all possible to retrieve the indices of neighboring vertices in a CvSubdiv2D* subdivision using OpenCV.
CvSubdiv2DPoint* pt = cvSubdiv2DEdgeOrg( CvSubdiv2DEdge edge );
...
0
votes
0answers
226 views
Index delaunay triangulation OpenCV
Using Delaunay triangulation I want to get the index of the coordinates closest to each other. For example; from a set of 1000 coordinated it would say point 301 creates triangles with points 102, 310 ...
4
votes
3answers
309 views
Thread-safe triangulation library
I'm writing a C++ software which needs fast Minkowski sum computations. An implementation based on double suffices.
I evaluated some geometric libraries such as
CGAL
LEDA
boost::geometry (doesn't ...
2
votes
1answer
128 views
How to interpolate colour or a triangulated surface
I am near my wits end with this problem. Please bear with me as I try to explain my problem. I have a 3D model with a triangulated surface. I then need to add some data (in the form of colour) to the ...
0
votes
1answer
50 views
open source remeshing package
I need to create a triangulation of a simple sphere, for which the triangles tesselating the sphere are as close to isometric as possible (viz. equilateral with as few triangles of order 5 as in ...
2
votes
3answers
194 views
Get border edges of mesh - in winding order
I have a triangulated mesh. Assume it looks like an bumpy surface. I want to be able to find all edges that fall on the surrounding border of the mesh. (forget about inner vertices)
I know I have to ...
-1
votes
1answer
205 views
iOS vs Android Location tracking with precision and battery consumption [closed]
I tried an Android device with GPS module OFF. I was driving in a car and horizontal accuracy was from 50-300m which is accuracy that is OK with me. (triangulation + wi-fi)
I am trying to build an ...
0
votes
0answers
106 views
Triangulations of a non-convex polygon [closed]
Given a polygon (not necessarily convex) with at most 12 vertices, how to find the number of its different triangulations? For convex polygons the answer is "Catalan numbers", of course.
2
votes
1answer
127 views
CelID based location in Android?
A lot has been said on SO about Celids and how we use them to get a rough estimate of a user's position. Most famously, here.
In Android can the app developer get lat/lon by simply querying the SDK? ...
0
votes
2answers
235 views
Triangulate a surface with vtk from points AND normals
I have a set of points in 3D that lie on a surface and I also have the normals at every point.
I would like to generate a surface triangulation with this information. In addition I could tell the ...
-2
votes
1answer
757 views
Android based application using Wi-Fi Triangulation [closed]
I am developing the android application for the indoor navigation using wifi triangulation. There is no GPS involve. Just use the android phone to get the current position inside the building by using ...
2
votes
1answer
189 views
Find distance of matching keypoints in a stereo image
I am currently pulling frames from the camera on an ios device. From these frames I use ORB to find keypoints and their descriptors. I then use BFMatcher to find matches between keypoints on the ...
0
votes
1answer
141 views
How to use cgal triangulation_3 locate?
Hi i'm using a Delaunay_triangulation_2 and Delaunay_triangulation_3 for finding points for interpolation. I found how to use locate for Delaunay_triangulation_2:
Locate_type loc;
int li;
CgalPoint ...
1
vote
1answer
70 views
Tiling/Approximating a 3d surface with identical polygons
I'm not really sure if this fits in here or better in a scientific computer science or math forum but since I'm searching for a concrete algorithm...
I have a 3d model which is somehow defined either ...
0
votes
1answer
78 views
CrossProduct and DotProduct - Expand these equations
I'm trying to use a formulae from http://www.blackpawn.com/texts/pointinpoly/default.html the upper of the two options. (I have already used the lower).
I just can not seem to wrap my head around ...
1
vote
1answer
996 views
Is it possible to get Bluetooth MAC and/or signal strength in iOS 6?
I am developing a system to locate an iPhone indoors. I am considering using Bluetooth triangulation based on signal strength.
Is it possible to get the signal strength of nearby bluetooth devices ...
3
votes
1answer
429 views
3d reconstruction from calibrated camera images
since in my previous question i was asking too broad. i tried to narrow my search as i need help urgently. i am working on 3d reconstruction. and now when i consider a pair of images. I have a set of ...
4
votes
2answers
251 views
Terrain triangulation algorithm
I have a terrain presented by large set of points in 3D-space. What is the best way to triangulate it?
I can just to project all points on 2D-space, than make Delaunay triangulation in time O(n * ...
3
votes
1answer
116 views
Is it OK to use GLUTesselator in DirectX?
Related questions: 1, 2
In my OpenGL project I use GLUTesselator to split concave polygons (which comes from external source) to triangles, which are fed to OpenGL through VBO after that. Now I'm ...
2
votes
2answers
758 views
Polygon Triangulation c#
I need to calculate triangles of a polygon. Polygon can contain holes. And Req an efficient way.
So I think I need Constrained Delaunay Triangulation.
I must do that in c#, only need calculation not ...
1
vote
1answer
100 views
Partial surface reconstruction
I need an algorithm to repair 3D triangular meshes. The desired condition is that 2n triangles (most of the time 2 triangles) share an edge. In contrast
the input meshes contain cases with 2n+1 ...
0
votes
1answer
198 views
Contour triangulation
I write my study and is stuck when i try triangulate the contour of surface. When it is in 2D its ok. When it in 3D a have trouble with triangle angle detection, i tried with:
Triange have 3 Vertices ...
0
votes
0answers
40 views
Assistance with finding correct algorithm for finding significant points in images for triangulation
I am trying to find the correct image processing algorithm for dissecting an image based on pixel-color-differences and distance between each point.
Essentially the result would be a listing of ...
2
votes
1answer
281 views
How to build the correct projection matrices?
Can someone please tell me how the projection Matrices look like for triangulatePoints? Its not that easy, I found several possible projection Matrices but couldn't figure out by now which one is the ...
0
votes
2answers
457 views
Triangulating non-planar polygons
I would like to triangulate a non-planar polygon (i.e. the vertices do not lie in the same 3D plane). The polygon consists of many points (hundreds). The triangulated surface does not have to be ...



