Tagged Questions
The delaunay tag has no wiki summary.
10
votes
2answers
1k views
Finding near neighbors
I need to find "near" neighbors among a set of points.
There are 10 points in the above image. Red lines are edges from the Delaunay Triangulation, black stars mark the mid-lines of the edges, blue ...
8
votes
2answers
349 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
1answer
320 views
plotting and coloring data on irregular grid
I have data in the form (x, y, z) where x and y are not on a regular grid. I wish to display a 2D colormap of these data, with intensity (say, grey scale) mapped to the z variable. An obvious solution ...
4
votes
1answer
605 views
Delaunay triangulating the 2d polygon with holes
I want to triangulate the complex (but not self-intersecting) polygon with holes, so that resulting triangles all lay inside the polygon, cover that polygon completely, and obey the Delaunay triangle ...
3
votes
1answer
692 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
4answers
126 views
What should be the out put of Delauny Mesh Triangulation algorithm for 3-Dimension?
If this are the input points:
to the Delauny Mesh Triangulation algorithm, then what will be output of Delauny Mesh Triangulation algorithm for 3-Dimension?
A. This one:
or B. This one ...
3
votes
4answers
961 views
Mesh Generation from Points with X, Y and Z Co-Ordinate
PROBLEM: Mesh Generation from 3D points (with X, Y and Z Co-Ordinates).
What I have is points in 3D Space (with X, Y and Z Co-Ordinates) you can see in Image (1)
What would be the output is Image ...
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
1answer
1k views
MATLAB: Create Delaunay Triangulation with Opening
I have a polygon with V vertices and n number of openings. How can I create a mesh using Delaunay triangulation for this polygon in MATLAB?
I know I can use the delaunay function, but I don't know ...
3
votes
6answers
2k views
How do I derive a Voronoi diagram given its point set and its Delaunay triangulation?
I'm working on a game where I create a random map of provinces (a la Risk or Diplomacy). To create that map, I'm first generating a series of semi-random points, then figuring the Delaunay ...
2
votes
2answers
278 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
1answer
126 views
Points left out when nearby in scipy.spatial.Delaunay
I am noticing an unexplained behaviour when comparing scipy's (0.9.0) and matplotlib's (1.0.1) Delaunay triangulation routines. My points are UTM coordinates stored in numpy.array([[easting, ...
2
votes
2answers
140 views
Fast way to compute the Voronoi diagram knowing the k-nearest neighbours
I know it is relatively easy to compute the sets of k-nearest neighbours from a Voronoi tessellations. What about the reverse problem?
I already have the set of k-nearest neighbours (in 3D) and I ...
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
196 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
1answer
378 views
Getting the circumcentres from a delaunay triangulation generated using matplotlib
If I use matplotlib to generate a delaunay triangulation for a group of points, what is the most appropraite way of getting the circumcentres of the triangles that have been geenrated? I haven't yet ...
2
votes
2answers
357 views
Accessing vertices in the triangle++ (delaunay/voronoi triangulation) Wrapper class
I'm using the triangle++ wrapper class from http://www.compgeom.com/~piyush/scripts/triangle/ to triangulate a point cloud for visulaizing with OpenGL.
I was able to put in my points and caluculate ...
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
3answers
1k views
Delaunay tessellation in Python?
I need to find the Delaunay tessellation of a polygon in Python, and the only libraries I could find (Delny, scikits) triangulate point clouds, not polygons. Any suggestions?
1
vote
0answers
36 views
check whether a point is visible from a face of a 2d convex hull
I am trying to implement the Bowyer-Watson algorithm for generating a Delaunay Triangulation of a set of points in a plane. The algorithm assumes a presence of a bounding super-triangle, but some ...
1
vote
1answer
52 views
Tetrahedralization visualization Octave
Hi does anyone know how to visualize the tetrahedrons in the output of the delaunay3() function in Octave?
http://www.obihiro.ac.jp/~suzukim/masuda/octave/html3/octave_151.html
In MATLAB this ...
1
vote
0answers
175 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
1answer
117 views
Voronoi from delaunay triangulation
i have almost finished my delaunay / voronoi triangulator and it was hard.
I haven't used the Fortun's code, i created the delaunay triangulatr and i derive the voronoi diagram from that.
There is a ...
1
vote
0answers
90 views
Can anyone recommend a lightweight Voronoi library for .Net?
I need a .Net Voronoi library or geometry library with support for Voronoi diagrams and preferably Delaunay triangulation. The following characteristics are required:
No interop OR if it has an ...
1
vote
1answer
359 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
1answer
177 views
Getting a vertex_handle from an edge_iterator
I'm having quite some difficulty getting a vertex_handle for each of the end points of an edge in a Delaunay triangulation. Since I hammered my head against this for several hours I thought maybe one ...
1
vote
2answers
886 views
c++: CGAL 2D delauny triangulation: Concave Shapes
I am currently getting into CGAL for some 2D triangulation tasks and I also got something simple to work allready. Anyhow I dont really get how to triangulate concave shapes since Right now I always ...
0
votes
1answer
34 views
Computing per-vertex (site) Voronoi cell areas directly from a Delaunay triangulation
I wish to compute the areas of Voronoi cells which relate to a Delaunay triangulation of a point set without explicitly converting the Delaunay triangulation to a Voronoi graph.
Since I only care ...
0
votes
1answer
38 views
Converting TriRep to DelaunayTri while using pointLocation?
I have a TriRep object with triangulations and I want to use pointLocation on the object to find whether the points are inside the triangles. But the pointLocation is a method defined for DelaunayTri ...
0
votes
1answer
68 views
Why do the delaunay edges from Matlab's delaunayn() connect points with non-adjacent Voronoi regions?
I am trying to find the points with edge-adjacent Voronoi regions in a given dataset. I'm new to computational geometry, but from reading up online, it appeared that using the Delaunay tessellation ...
0
votes
1answer
81 views
CGAL: Help getting triangles coordinates from Delaunay Triangulation
I'm new with CGAL, i'm sure my question is very simple.
I am trying to use CGAL to do some Delaunay triangulation. I have a grid with N 3D points over a sphere and I want to triangulate the sphere ...
0
votes
1answer
121 views
CGAL 2D Delaunay Triangulation: How to get all the edges
How to get/iterate over all the edges in the 2D delaunay graph in CGAL (C++)?
For example, in MATLAB this is just edges(dt).
0
votes
0answers
158 views
CGAL 3d Delaunay triangulation keeping initial surface structure
I have a problem with 3d mesh generation using CGAL. I have a 3d surface (given by a set of triangles) and I need to generate mesh with 3d Delaunay triangulation (i.e. set of tetrahedrons) within this ...
0
votes
0answers
308 views
delete triangles outside outline polygon in delaunay triangulation
I have an outline polygon traced using impoly, over an image of an outline. When I triangulate it using delaunay command, triangulations extend outside the polygon. how to delete these unwanted ...
0
votes
1answer
851 views
Interpolation and Morphing of an image in labview and/or openCV
I am working on an image manipulation problem. I have an overhead projector that projects onto a screen, and I have a camera that takes pictures of that. I can establish a 1:1 correspondence between ...