Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
3k views

How to tell whether a point is to the right or left of a line

I have a set of points. I want to separate them into 2 distinct sets. To do this, I chose two points (a and b) and draw an imaginary line between them. Now I want to have all points that are left from ...
5
votes
2answers
132 views

ConvexHull in Graphics - Mathematica

Trying to plot a ConvexHull Using PlanarGraphPlot from the ComputationalGeometry package, it does not work when used in graphics. Any Idea on how to plot the ConvexHull using Graphics ?
5
votes
3answers
1k views

How to sort points in a Google maps polygon so that lines do not cross?

I am trying to make a map where a user can outline any shape they would like. But I am running into an issue where users can select points that will make the lines of the polygon cross and exclude ...
5
votes
4answers
657 views

Convex hull of 4 points

I would like an algorithm to calculate the convex hull of 4 2D points. I have looked at the algorithms for the generalized problem, but I wonder if there is a simple solution for 4 points. I've been ...
4
votes
4answers
176 views

largest prefix of array of vertices that forms a convex polygon

Related to: Polygon Decomposition - Removing Concave Points to Form Convex Polygons I am looking for an algorithm to do the following: The input is an array of 2D points (P0…PN-1). The length N of ...
4
votes
3answers
797 views

Test case data for convex-hull

I need to make a 2D convex hull function for a class assignment and I want a more robust test cases than the assignment provides. Does anyone known of a largish test cases (25 < n < 100) with ...
4
votes
3answers
2k views

Best Algorithm to find the edges (polygon) of vertices

I have a large array of vertices, some of them are edges, some are redundant (inside the shape) and I want to remove those. The simplest algorithm I could think of is checking one by one if they hit ...
3
votes
2answers
158 views

convex hull algorithm for 3d surface z = f(x, y)

I have a 3D surface given as a set of triples (x_i, y_i, z_i), where x_i and y_i are roughly on a grid, and each (x_i, y_i) has a single associated z_i value. The typical grid is 20x20 I need to find ...
3
votes
1answer
1k views

Convexity defects C++ OpenCv

I would be grateful to you if you could help me with this issue :) Relating to this question cvConvexityDefects in OpenCV 2.X / C++?, I have the same problem. The OpenCV C++ wrapper has not the ...
2
votes
2answers
44 views

convexHull in 3D Perl

I have a Set of points in 3D with x y z coordinates. i would lik eto calculate the convex Hull of these points. I haf gone through algorithms available but i couldnt do it in Perl. Perl ...
2
votes
2answers
289 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
250 views

Python - Convex Hull with Some Permissible Interior Points

I'd like to make a convex hull of a set of 2D points (in python). I've found several examples which have helped, but I have an extra feature I'd like that I haven't been able to implement. What I ...
2
votes
2answers
357 views

Is there a linear-time algorithm for finding the convex hull of a complex polygon?

I know there's a worst-case O(n log n) algorithm for finding the convex hull of a complex polygon and a worst-case O(n) algorithm for finding the convex hull of a simple polygon. Is there a ...
2
votes
4answers
1k views

Converting convex hull to binary mask

I want to generate a binary mask that has ones for all voxels inside and zeros for all voxels outside a volume. The volume is defined by the convex hull around a set of 3D coordinates (<100; some ...
2
votes
2answers
712 views

How to find the minimum radius circle that encloses all the given points?

Suppose I have some 1000 odd points on a plane. Then, what I think could be done is to discard the points that do not affect the radius of the circle in any way - the points through which the convex ...
1
vote
0answers
47 views

2D convex hull collision responses

I'm trying to make a 2D game using convex hulls for bounding volumes in a discrete physics system but I cannot seem to get the collision responses to work anywhere near what they should be doing. I ...
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
172 views

C++ Convex hull using Graham scan algorithm

So i need to make a Convex hull using Graham scan algorithm, but i have problem, i get this kinda convex: void draw_line(Line l, Canvas& canvas) { canvas.draw_line(l.a, l.b); } double ...
1
vote
1answer
104 views

Adding to a CvSeq or other type of dynamic memory storage in C/C++ in an OpenCV project

Question Answered, see solution at end of question. More comments / answers still welcome. So I'm having some trouble getting all my elements into one memory store, the best I have managed to do is ...
1
vote
2answers
225 views

Finding convex defects? in OpenCV 2.3, c++ with MS Visual Studio2010

I am currently attempting to use OpenCV 2.3 and c++ to detect a hand (wearing a green glove), and distinguish between different hand gestures. At this very moment, my next step is to acquire specific ...
1
vote
1answer
77 views

Computationnal Geometry Package & “Nontensor object generated” in Mathematica

Each time i compute the ConvexHullArea of a set of points, I get the following : CompiledFunction::cflist: Nontensor object generated; proceeding with uncompiled evaluation. >> The output ...
1
vote
1answer
357 views

cvConvexityDefects in OpenCV 2.X / C++?

I'm using OpenCV 2.2 and I need to determine convexity defects of a convex hull. I can't find anything on convexity defects in the documentation which makes me wonder if it is still supported in ...
1
vote
0answers
89 views

Tracking motion of a convex hull

I have two convex hulls and I was just wondering if anyone knows of any good algorithms or resources/ has any ideas on how to compare the position of one convex hull to another? Distance, orientation ...
1
vote
1answer
56 views

Computer Vision techniques for geometrical information

I am trying to research and implement some computer vision techniques e.g. motion tracking for a set of arbitrary points in 2D. I am producing a convex hull for the set of points I know and a convex ...
1
vote
0answers
357 views

Alternatives to Convex Hull or pointcloud to mesh processing

I'm trying to wrap my head around rendering point clouds. Right now I'm using Processing/Java, and have a pseudo working thing using QuickHull 3D, but it's not what I've been looking for, effect ...
1
vote
1answer
156 views

_swig_getattr AttributeError

I'm getting an attribute error using swig to wrap a c function for use in python code. I've got other functions alongside chap that work just fine, but some strange reason this one will not work :/ ...
0
votes
1answer
174 views

Gift Wrapping Algorithm not working properly

I am trying to implement this Gift Wrapping Algorithm (yoshihitoyagi!) done in java, in VB6. I'm pretty sure I have done this properly, but for some reason, it will not work. The returned arrays only ...
0
votes
1answer
117 views

Convex Hull reading XY co-ords in Python

I need to come up with a convex hull algorithm to read through a bunch of X , Y co-ordinates and outline the image.. i'm coding in python Any ideas?
0
votes
2answers
291 views

Draw a convex hull using the given points in java/android

I have some 2D points given and i want to draw a polygon using those points. This polygon must pass through all the given points means there is no such point which is inside or outside the polygon. ...
0
votes
1answer
362 views

How to find/create Convex hull of GPS points in Javascript

I have a GPS cluster (contains many GPS points which are close to each other) and I want to identify it as a place by creating a polygon around its outer points. One way is Convex Hull and I am ...
0
votes
1answer
416 views

Convex Hull from Voronoi Diagram

I need an algorithm for calculating the convex hull of a set of points from the Voronoi Diagram of the points in O(n). The Voronoi diagram is contained in a bounding box and is stored as a doubly ...
0
votes
2answers
218 views

how can I check that a point is in a triangle?

Hi also consider that I have 4 points and I will have 4 triangles how can I check these four triangles for each point that is the point within the triangles or not. thanks
0
votes
1answer
447 views

blind convex hull code in java

Hi I know that blind convex hull has o(n^4) but I have never seen its code! Is there any site that has its code? thanks
0
votes
1answer
248 views

Code Example For Merge Hull

Anyone have a recursive code example for the Merge Hull algorithm? Im struggling to understand how to implement it.