Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
7answers
8k views

Polygon Triangulation with Holes

I am looking for an algorithm or library (better) to break down a polygon into triangles. I will be using these triangles in a Direct3D application. What are the best available options? Here is what ...
9
votes
4answers
216 views

Locate triangle containing arbitrary point in Delaunay-triangulated surface

I'm looking to do a linear interpolation of a irregularly sampled function z(x,y) based on a Delaunay triangulation. Say I have a hill for which I have obtained a Delaunay triangulation: I know ...
9
votes
6answers
10k views

Wifi Triangulation

What would be the best way to triangulate a wireless network passively. Are there tools available? Algorithms? Libraries? My goal would be to create a relative map of various objects that sends or ...
8
votes
2answers
347 views

Efficient Delaunay triangulation

I'm looking for a .NET implementation which builds Delaunay triangulation from set of points. I have already tested couple of implementations but they all worked only for small amount of points (up ...
7
votes
3answers
389 views

Algorithm to convert vertices of a triangular strip to polygon

I have an array with vertices representing a triangular strip. I need to convert it into polygon. There are many solution to do the reverse, but I failed to find one for the above problem. Or it ...
7
votes
3answers
832 views

Efficient Packing Algorithm for Regular Polygons

I'm looking for a packing algorithm which will reduce a regular polygon into rectangles and right triangles. The algorithm should attempt to use as few such shapes as possible and should be relatively ...
7
votes
4answers
556 views

Meshing of Point Clouds from a 3Dlaser scanner

Is there any package/software which can do Meshing of Point Clouds in real time? What is the data structure used to represent 3D Point Clouds ?
7
votes
2answers
1k views

Lightweight Delaunay trianguation library (for c++)

I'd like to play around with some (2D) Delaunay triangulations, and am looking for a reasonably small library to work with. I'm aware of CGAL, but I was wondering if there was something fairly simple ...
6
votes
2answers
328 views

Polygon Partioning vs Triangulation

Hey so I recently asked this question about how to cut down a concave polygon to convex ones, and i was suggested to do Triangulation or Polygon Partioning. The library i'm using (SFML\Box2D) only ...
6
votes
4answers
213 views

Can I run GLU (OpenGL) on a headless server?

we're trying to use GLU's tesselation functions on a headless, GNU/linux server. We'd like to use PyOpenGL for that, but the problem is that it crashes on a call to gluNewTess (Segmentation fault) ...
5
votes
2answers
144 views

Algorithm for completing a partial triangulation (Constrained Triangulation)

Given a set of points in a plane and an incomplete triangulation of the convex hull of the points (only some edges are given), I'm looking for an algorithm to complete the triangulation (the initial ...
5
votes
3answers
289 views

Trilateration with limits?

I'm in need of help solving an issue, the problem came up doing one of my small robot experiments, the basic idea, is that each little robot has the ability to approximate the distance, from ...
4
votes
5answers
93 views

Triangulation of polygon

Im trying to triangulate a polygon for use in a 3d model. When i try using the ear method on a polygon with points as dotted below, i get triangles where the red lines are. Since there are no other ...
4
votes
1answer
218 views

3-D Shape detection from triangulation mesh

I'm looking for any algorithm or source code which can find whole or partial simple 3-D shapes (sphere, cylinder, cone, etc) in a 3-D triangulation mesh. I've found several papers on algorithms ...
4
votes
2answers
157 views

Is there a good framework/sdk on wifi positioning with c#?

I'm just searching a framework for wifi positioning in c#. actually i found nearly everything that i need for a robot project in form of a framework. even primitive object recoginition!!! now i wonder ...
4
votes
4answers
1k views

3D triangulation algorithm

Does anybody know what triangulation algorithm Maya uses? Lacking that, what would be the most probable algoritms to try? I tried a few simple off the top of my head (shortest/longest resulting edges, ...
4
votes
1answer
1k views

Concave polygon drawing

For drawing complex concave polygons with OpenGL, is it better to tesselate it into triangles, or use the stencil buffer? I'm guessing the stencil buffer would be faster for a single frame, but ...
3
votes
2answers
116 views

Determine if polygon has a hole?

After experimenting with some triangulation work I ran across the question on how to determine if a polygon has a hole? I know how to handle a known hole but am unsure of how to determine if one ...
3
votes
1answer
690 views

python scipy Delaunay plotting point cloud

I have a pointlist=[p1,p2,p3...] where p1 = [x1,y1],p2=[x2,y2] ... I want to use scipy.spatial.Delaunay to do trianglation on these point clouds and then plot it How can i do this ? The ...
3
votes
2answers
739 views

WiFi triangulation on the iPhone

Lets say you have a zoo and you want to create an app which shows you details on each animal whenever you are next to the cage. (just for the sake of this question ... GPS signals are not an option) ...
3
votes
1answer
180 views

Infinite initial bounding triangle in iterative Delaunay triangulators

Most iterative algorithms require an initial empty triangle to get the ball rolling. It seems like a commonly used trick is just to make the super triangle very large in comparison with the point set. ...
3
votes
5answers
107 views

Culling interior triangles

I have an array of thousands of quads; 4-sided 3D polygons. All I know are the coordinates of the quad corners. A subset of these quads define the closed outer shell of a 3D shape. The remaining ...
3
votes
4answers
679 views

Library for polygon operations

I've recently encountered a need for a library or set of libraries to handle operations on 2D polygons. I need to be able to perform boolean/clipping operations (difference and union) and ...
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?
2
votes
1answer
52 views

Polygon triangulation into triangle strips for OpenGL ES

I am looking for a fast polygon triangulation algorithm that can triangulate not very complex 2D concave polygons (without holes) into triangle strips ready to be sent to OpenGL ES for drawing using ...
2
votes
2answers
276 views

C++-ObjC OpenCV Constrained Delaunay

I succesfully implemented a Delaunay triangulation of a contour in OpenCV 2.3.1. With cvPointPolygonTest I can get all the triangles in the convex hull, then I tried to perform another ...
2
votes
2answers
69 views

Triangulation of multiple 2d sections

I have multiple 2d polygons built up from points in y and z direction, each of these "faces" are located at a cordinate x. I want to show this as a solid model and therefor need to triangulate the ...
2
votes
4answers
81 views

Mesh to mesh intersections

I'm looking for a library or a paper that describes how to determine if one triangular mesh intersects another. Interestingly I am coming up empty. If there is some way to do it in CGAL, it is ...
2
votes
0answers
27 views

Path computation on a terrain

I am pursuing a long term hobby project to develop a simple visual tool where a user will be able to perform a minimal 3D visualization of the terrain -- view portions of the terrain from different ...
2
votes
3answers
561 views

iPhone indoor location based app

I am researching how to create an app for my work that allows clients to download the app (preferably via the app store) and using some sort of wifi triangulation/fingerprints be able to determine ...
2
votes
1answer
158 views

CGAL: Find face/triangle a point belongs to?

After reading about it I've come to this: #include <vector> #include <CGAL/Exact_predicates_inexact_constructions_kernel.h> #include <CGAL/Delaunay_triangulation_2.h> typedef ...
2
votes
2answers
195 views

Delaunay Triangulation in Java?

I thought Apache Commons would have it but couldn't find it. Any good library out there has it implemented?
2
votes
3answers
246 views

Triangulation algorithm

I've decided to create a simple demo, dividing a polygon into triangle set. Here what i've got so far: A sequential vertex list is given (P1) forming polygon edges (polygon is not convex in most ...
2
votes
2answers
829 views

Triangulation Tutorials for Android

I have make the application of GPS which give me the Latitude and Longitude of current location, but the problem is that in some particular areas GPS doesn't provide the location. Can any one suggest ...
2
votes
1answer
166 views

Triangle rendering problem in directX

I am working with directX 9. I have a problem while rendering triangles using drawprimitive. The problem is - When I am rendering the whole object made of several triangles, the triangle having all ...
2
votes
2answers
919 views

How can I determine my position by triangulation on known routers?

Is there any open source software available? Basically, I just want to triangulate based on signal strength of routers whose location is fixed and known. I realize there can be cases of interference, ...
2
votes
3answers
1k views

3D polygonal triangulation in opengl es

im looking for any information about a builtin algorithm in opengl es to convert a 3d polygon in a triangle set. is there anything implemented like that in opengl es?
2
votes
1answer
197 views

Mesh Grid Simplification

I have a few 1000s triangles connected in a 2D mesh grid. It represents water flow. This grid is a delaunay triangulation. I need to merge the triangles back into a minimal amount of simple polygons ...
2
votes
3answers
1k views

How do I iterate over faces in CGAL

I am trying to use CGAL to do some Delaunay triangulation. I used one of the CGAL samples to compute a triangulation which includes a height field attribute. The problem I have having is that I have ...
2
votes
2answers
617 views

How do I cut triangles out of a concave Delaunay triangulation?

I'm using Delaunay to triangulate a concave polygon, but it fills in the concavities. How do I automatically remove the triangles that are outside the polygon boundaries?
2
votes
1answer
602 views

Having trouble with ear clipping

The problem I have is coming up because I can't identify a a caved in triangle vs an ear that should actually be chopped off. How can I tell the difference between a convex and a concave triangle?
1
vote
1answer
33 views

How do I plot my function to a mesh

I am a new MATLAB user and I am trying to plot a function: function [ uncertainty ] = uncertain(s1, s2, p) %UNCERTAIN calculates the measurement uncertainty of a triangulation % provide two ...
1
vote
1answer
73 views

How do you triangulate a 3D point from a pair of stereo images?

I'm working with a stereo pair of photos, and trying to obtain a set of 3D points from matching points on these 2 images. How exactly is the 3D point triangulated? Do you throw a ray from the camera ...
1
vote
1answer
72 views

Python, GIS and Fortran: Trying to create multiple polygons from xy point data

I've been working on this problem for awhile and have found no joy on the ESRI forum page or with some FORTRAN triangulation script I wrote. I have two .csv files with hundreds of xy point data in. ...
1
vote
2answers
212 views

Calculating distance within a building

I started doing some thinking about creating an Android application that can be used within a corporate building to determine what room you are in. Obviously I'm thinking GPS and network locations ...
1
vote
0answers
174 views

Is OpenCV's Subdiv2D / Delaunay broken when the point given to locate is one of the triangle's vertices?

The code for building a triangulation: CvSubdiv2D *subdiv; CvMemStorage *storage = cvCreateMemStorage(0); CvRect rectangle = cvRect(0, 0, 100, 100); subdiv = cvCreateSubdivDelaunay2D(rectangle, ...
1
vote
2answers
177 views

Send Multiple Pings without waiting for reply Windows C#

Im currently doing research towards my final year BSc project. The final product will include indoor location tracking functionality. The traditional, or most utilised method seems to be RSSI ...
1
vote
1answer
192 views

matlab: triangulate point set

Given a point set (i.e a 3XN array of vertices), how can I triangulate it using matlab? Assuming the point set does represent some surface of an object, and does not contain any noise. EDIT: The ...
1
vote
1answer
357 views

How does this code for delaunay triangulation work?

I have this Java code that with a set of Point in input return a set of graph's edge that represent a Delaunay triangulation. I would like to know what strategy was used to do this, if exist, the ...
1
vote
3answers
704 views

Wifi Triangulation- Distance from AP to iPhone

I'm trying to calculate a rough distance from an AP (Access Point) to an iPhone. A couple of constants: 1) I've already solved the problem of finding and determining signal strength of nearby APs ...

1 2