The delaunay tag has no wiki summary.
1
vote
0answers
35 views
Identifying the Voronoi Verticies
I have a list of two dimensional points and I have been able to find the Voronoi diagram using the Fortune algorithm implementation here, I have also been able to compute the dual delaunnay ...
2
votes
0answers
35 views
Suggestions for alternative 3D space partition tessellation, different from Voronoi and Delaunay
I have a system of mono-disperse spheres inside a cubic box. I am studying the volume distribution inside the sample, after tessellating it with either Voronoi and Delaunay tessellations. I am ...
0
votes
0answers
24 views
Points reconstruction
I would like to ask about one idea that I had and I haven't figured out the solution, my idea is about:
Having a set of GPS coordinates point, which are covered by a rectangle, how to connect those ...
0
votes
1answer
21 views
Extract triangles form delaunay filter in mayavi
How can I extract triangles from delaunay filter in mayavi?
I want to extract the triangles just like matplotlib does
import numpy as np
import matplotlib.delaunay as triang
from enthought.mayavi ...
0
votes
2answers
43 views
Secure usage of Cell_handle in a CGAL Delaunay triangulation after point insertion
I'm planning to write an algorithm that will use CGAL Delaunay triangulation data structure.
Basically I need to insert some point into the triangulation, save reference to some cells, and then make ...
0
votes
0answers
52 views
Polybool gives subtraction with wrong vertices
I am using the function polybool from the Mapping Toolbox and my version of Matlab is R2013a.
I have problems when I perform a simple subtraction of two polygonal regions (a rectangle described by ...
0
votes
0answers
36 views
Delaunay Triangulation to Volume
Anyone know how to save delaunay triangulation result which is 4 points matrix (n x 4) into a volume (ex : 72 x 321 x 311).
I hope someone can help me with this. Thanks.
Here is my code :
...
1
vote
2answers
149 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 ...
3
votes
4answers
169 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
121 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
1answer
41 views
Out of Range sub2ind [closed]
I have problem with sub2ind, when I run it, the error occur :
Error using sub2ind (line 56)
Out of range subscript.
Error in TriangulationConvexHull (line 50)
IND = ...
3
votes
3answers
137 views
Looking for an efficient structure for checking which circles enclose a point
I have a large set of overlapping circles each at a random location with a specific radius.
type Circle =
struct
val x: float
val y: float
val radius: float
end
Given a ...
-1
votes
1answer
38 views
Delaunay to grid [closed]
I am trying to convert a delaunay triangulation to a grid structure. The rational for this is that I want to subtract two DEM from eachother. One being the delaunay triangulation and the other a ...
0
votes
0answers
76 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 ...
0
votes
0answers
160 views
Algorithm Design for Delaunay Triangulation? [closed]
I am very much happy after seeing some very good answers in this site. I am trying to design a algorithm for the construction of
Delaunay Triangulation
using Randomized Incremental Algorithm.(I wont ...
1
vote
2answers
99 views
Merging two arrays based on the first two values
I will briefly explain the idea behind the code, and then delve into my problems.
I'm collecting data, where the first two coloumns will be long and lat co-ordinates and the third column will be gps ...
0
votes
0answers
63 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 ...
1
vote
1answer
116 views
hierarchy in voronoi tessellations
I am working with voronoi tessellations. I have different polygons representing regions in the tessellations.
The points below are used to draw the tessellation in the figure.
tessdata
[,1] ...
1
vote
2answers
274 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
1answer
154 views
Voronoi diagrams based on non metric distances in R
I want to voronoi diagrams in R. I have a set of points in N-dimensions(say 10). I dont want to use multi dimensional scaling(MDS). I want voronoi diagrams to be plotted using non metric measures. Is ...
1
vote
1answer
299 views
3D triangular surface mesh generation using only the exact input points as vertices
I have number of points from an exact numerical solution that constitute the surface of a smooth 3D body. These points already satisfy smoothness criteria and contain no noise (other than ...
-1
votes
1answer
121 views
CGAL: Error in compiling code
I am trying to implement a Delaunay triangulation on a pointcloud which is defined in 3d space with cartesian co-ordinates.
I am using QT on Windows 7 (64 bit) and the CGAL library to do the same.
...
0
votes
1answer
70 views
how can combine two neighbour site(cell) in voronoi diagram?
How can I combine two neighbour site(cell) in voronoi diagram?
I decide in my project combine two neighbour site(cell) in voronoi diagram, can any one help me?
6
votes
1answer
188 views
sort 2d calibration pattern points with numpy
I have a n:2 Matrix with points(x,y) found from dots in a rectangular calibration pattern.
I like to sort these points row by row.
I have sorted these points with lexsort but the distortion from the ...
2
votes
2answers
773 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
389 views
How to find all neighbors of a given point in a delaunay triangulation using scipy.spatial.Delaunay?
I have been searching for an answer to this question but cannot find anything useful.
I am working with the python scientific computing stack (scipy,numpy,matplotlib) and I have a set of 2 ...
1
vote
1answer
241 views
half-edge data structure delaunay triangulation
I am writting Python delaunay triangulation with half edge data structure.
Also, in triangulation algorithm, I try to store only half-edges. I retrieve triangles from the list of edges.
However, ...
1
vote
1answer
373 views
Voronoi diagram, Delaunay triangulation - data structures
I want to compute Voronoi and its dual, Delaunay triangulation. I am using Watson Bowyer algorithm. My goal afterwards is to compute alpha-shapes (concave hulls). So I will need to rapidly access the ...
0
votes
1answer
101 views
constrained delauncy traingulation opencv on a contour or convexhull
I want to know the method of doing CDT(constrained delauncy triangulation) using opencv C++ / C api , on a contour or convex hull .
my question is similar to
C++-ObjC OpenCV Constrained Delaunay
1
vote
0answers
407 views
How to generate isolines (contour lines) at specific values from irregular data?
I have an array of sample points with their (X, Y, Z) coordinates. I use Delaunay Triangulation to generate an irregular network from them and then I use linear interpolation to plot contour lines at ...
0
votes
0answers
120 views
how can I extract the distances between the points after a Delaunay Triangulation with deldir in R?
I would like to calculate distances between cities using Delaunay Triangulations. I have the longitudes and latitudes of the twenty cities I would like to calculate distances between, but I have some ...
2
votes
1answer
1k views
Is there C++ API for Delaunay triangulation in OpenCV?
I'm trying to implement one of active appearance models (AMM) and on one of the steps I need to get triangulated mesh of a face, e.g.:
Delaunay triangulation seems to be a good fit for this task ...
7
votes
3answers
3k views
Python: Calculate Voronoi Tesselation from Scipy's Delaunay Triangulation in 3D
I have about 50,000 data points in 3D on which I have run scipy.spatial.Delaunay from the new scipy (I'm using 0.10) which gives me a very useful triangulation.
Based on: ...
0
votes
2answers
484 views
OpenCV,C++: Missing Triangles in Delaunay Triangulation
I am using NetBeans 7.1 on Ubuntu 11.04 and would like to obtain triangles from a set of points using OpenCV. I build the Delaunay triangulation as follows.
vector< Triangle > ...
1
vote
1answer
2k views
Matlab triangulate and plot cylindrical point cloud in 3D
I have a question relating to plotting a cylindrical surface in Matlab. My dataset consists of a point cloud of X, Y, Z coordinates with corresponding intensity values C.
I can plot them using the ...
0
votes
1answer
177 views
Parallel delaunay triangulation naive algorithm
The following code(Pg.187,Computational Geom in C by Rourke) takes same time to run serially as well as in parallel(2 proc).
Please help me identify the problem.
Here's the parallel portion
int ...
1
vote
1answer
267 views
Delaunay triangulation of monotone Polygon
I have searched the whole internet and scientific databases for a paper on Delaunay Triangulation of monotone Polygons. I'm not searching for arbitrary Triangulation of Polygons, only for Delaunay ...
0
votes
1answer
528 views
Create delaunay triangulation in N-Dimensions from points forming non-convex surface (DelaunayTri for 5-D case)
I'd like to build triangulation for larger that 3 dimensions (4-6) cases. I have points representing non-convex surface. for 2D and 3D cases DelaunayTri is a way to go. What about higher dimensions?
...
0
votes
1answer
118 views
Delaunay Triangulation Equivalent for Undirected Graph
I'm working on a path planning algorithm that is equivalent to a traveling salesman problem. I don't know how many nodes I might have so I'm willing to sacrifice accuracy for speed. My problem can be ...
2
votes
1answer
342 views
Parallel delaunay triangulation
I am trying to parallelize the Guibas Stolfi delaunay triangulation using openmp.
There are two things to parallelize here-
the mergesort(),which i did and
the divide() where I am stuck.
I have ...
0
votes
1answer
195 views
guibas stolfi delaunay triangulation distorted output
I am using the delaunay triangulation code by Geoff Leach based on the guibas stolfi algorithm.
here's the link
I took randomly generated integers between 50 to 1550 as the coordinates for the ...
1
vote
0answers
107 views
CGAL mesh optimization
I have been trying to "clean" a triangulation that I pre-generate.
Essentially I want to input my points on CGAL and generate a mesh from there, then use refine_mesh_3 to remove slivers and improve ...
1
vote
0answers
123 views
Delaunay triangulation with restrictions
I need Delaunay triangulation (DT) but with one specific: not all points can be connected. In other words
bool Test( const Point & p0, const Point & p1 );
if this function returns false, ...
1
vote
1answer
139 views
Point-in-Delaunay Test from Unmeshed Point Cloud
Would it be possible, given an arbitrary point P, and assuming I can look up nearby (unmeshed) points sorted by distance, efficiently determine the three nearby points that form the delaunay triangle ...
0
votes
2answers
611 views
Delaunay triangulation from convex hull
I need to write some codes on computational geometry and parallelize them using openMP.So far, I have finished convex hull and closest pair of points.I need to write the delaunay triangulation divide ...
1
vote
1answer
140 views
generating constraints edges randomly for generating an constrained delaunay triangulation
I have implemented the sweep-line approach used by Domiter and Zalik to generate a constrained Delaunay triangulation for a set of points in 2D space in Java. I want to make sure that the code which ...
0
votes
1answer
316 views
Delaunay() function MATLAB Purpose
I want to generate triangle meshes in MATLAB with the delaunay function in 2-D. So I declare
the X- and Y- values and set tri=delaunay(X,Y). Then I use triplot to plot it. However,
what does tri give ...
1
vote
1answer
782 views
CGAL 2D Delaunay Triangulation: How to get edges as vertex id pairs
I have a set of 2D points each with an associated id. (e.g. if the points are stored in an array, the id is the index into each point 0,....,n-1 ).
Now I create a Delaunay triangulation of these ...
0
votes
0answers
95 views
Opengles 1.0 android triangles from group of 3d points
I have a set of 3d points and I want to connect them by triangles or polygons.using opengles 1.0 and android. I have seen that Delaunay triangulation could be used, but not sure how to use them in ...
1
vote
1answer
135 views
Do I need a delauny triangulation to find the minimum spanning tree?
I understand that the MST is a subset of the delauny triangulation but how can it help to find a minimum spanning tree? What is the meaning when I use an edge of a delauny triangulation for the MST? ...
