is a branch of computer science devoted to the study of algorithms which can be stated in terms of geometry.

learn more… | top users | synonyms

1
vote
2answers
32 views

Design an algortihm to match trajectory?

I have a dataset in the form of (timestamp, lattitude,longitude). I'm going to be given n entries where each entry is of the form of (timestamp,lattitude,longitude). This is for one user. ...
0
votes
0answers
49 views

Anything wrong with Fortune's Algorithm C++ code? [closed]

I am trying to create a Voronoi diagram program for a random point cloud. After a lot of search, I'm using Fortune's algorithm for the Voronoi diagram. So after I wrote my code, based on thisexample ...
-1
votes
0answers
25 views

Quick Hull in pascal?

I have a task to write a Quick Hull code in pascal and I don't have an idea how to do it. I found pseudo-codes involving sets and their division but i don't know how to search for a point in a set or ...
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 ...
0
votes
1answer
31 views

Half-edge data structure in Javascript?

I implemented half-edge data structure in C++ to generate topological connectivity of 3D objects from a soup of polygons. Its implementation needs features such as pointers, forward declarations etc. ...
0
votes
0answers
8 views

Getting inline specifier error Compiling a Library.(Wykobi)

I have downloaded wykobi library (computational geometry) and am trying to use it. I am trying to make (compile) it using the given Makefile, but i keep getting the error: error: explicit ...
2
votes
2answers
90 views

Curve (spline, bezier path, etc) described by a set of base points

As an input I have set of 'base' points (e.g. 9 points), and as an output I must return another set of points, which describe a curve. A1-A9 is an input; these are the 'base' points. My task is to ...
1
vote
1answer
49 views

Convex hull algorithms for sorted set of points

I need an algorithm for computation convex hulls for sorted set of points in 3 and higher dimensions. Also I need in lower part of a convex hull and it is not necessary to construct a whole convex ...
1
vote
1answer
87 views

Find Leftmost Line Leaving a Vertex

As part of a larger algorithm, I am traversing a set of interconnected line segments. On arriving at any vertex via a line segment, I need to find the leftmost line segment leaving from that point. ...
3
votes
2answers
54 views

Count or detect sprites passing from lines

I have a simulation in which thousands of agents (multi-pixel sprites) move to different directions. There are imaginary (not drawn in the space) detection lines in the simulation space, specified by ...
0
votes
0answers
37 views

WPF 3D - Generate complex (non-convex) polyhedron UV mapping

I need to find an approach to the problem of generating texture maps for non-convex polyhedrons without using a design tool. Specifically, I am mapping simulation results data onto a 3D surface. That ...
2
votes
1answer
50 views

How to deduce any view of a 3D object knowing all it's 2D views (top, down, front, back…)

Well, the title is quite self explanatory. I'm asking a way to calculate any view of a 3D object knowing it's rotation and all the 6 views (proyected on a cube; top, bottom, front, back...). Is it ...
1
vote
0answers
61 views

Algorithm to interpolate any view from individual view mapped on a sphere

I'm trying to create a graphics engine to show point cloud data (in first person for now). My idea is to precalculate individual views from different points in the space we are viewing and mapping ...
0
votes
1answer
62 views

Calculate the volume of a GeometryModel3D

I'm using HelixToolkit's ModelImporter class(Helix 3D Toolkit is a collection of custom controls and helper classes for WPF.) for loading 3D objects from STL files (STereoLithography is a file format ...
8
votes
1answer
105 views

Given a set of n points (x,y), is it possible to find the number of pairs of points with negative slopes between them in O(n logn) time?

Given a set of n points on a 2-d plane of the form (x,y), the aim is to find the number of pairs of all points (xi,yi) and (xj, yj) such that the line joining the two points has a negative slope. ...
1
vote
2answers
34 views

Find separating line between two polygons

Is there a simple algorithm that finds a separating line between two polygons such that they lie on either side of the line? Or preferably does anyone know of a library that does this sort of thing? ...
-1
votes
0answers
22 views

working with multiple images [closed]

I have to work with multiple aerial images. the objective is to reconstruct 3d features. for a particular object, i want to find the images which are giving good viewing geometry than others. so that, ...
0
votes
1answer
49 views

collision test for 2d polygon physics

I want to do some 2D rigid body (polygon) physics and I've found an elaborate equation to calculate the collision response. But, before that I would need a good way of finding 'input' to that ...
1
vote
1answer
44 views

intersection of voronoi diagram with a line

Is there a computationally efficient way to determine the points of intersection of a straight line with all the edges of a given Voronoi tessellation in a rectangular plane area? Thanks
0
votes
1answer
41 views

Circular Separability Algorithm [closed]

Does anyone know of a Java library that can compute the smallest separating circle of two polygons? Or possibly a very naive algorithm to calculate it? Thanks!
2
votes
3answers
81 views

Given two point sets A and B, how do you find the point in A farthest away from B?

Does anybody know of an efficient algorithm which solves the following problem: Given two disjoint point sets A, B of some metric space, find a point in A which maximizes the minimum distance to the ...
0
votes
0answers
65 views

3D matrix alignment for 2 cylindrical shape

I have two 3D geometry (m*3 matrix) which have cylindrical morphology, I have tried with a lot of different methods to align one to the other one like ICP, using the rotation matrix of SVD of both ...
0
votes
1answer
134 views

Camera pose estimation (OpenCV PnP)

I am trying to get a global pose estimate from an image of four fiducials with known global positions using my webcam. I have checked many stackexchange questions and a few papers and I cannot seem ...
2
votes
1answer
100 views

How to check if line intersects a rectangle?

If you have 4 values x1,y1,x2,y2 (x1<=x2, y1<=y2) which represent the four sides of a rectangle, and 4 more values x3,y3,x4,y4 which represent 2 end points of a line, how can you check if ...
7
votes
4answers
263 views

Maximum surface inside a triangle

I have encountered the following interesting problem while preparing for a contest. You have a triangle with sides of length a, b, c and a rope of length L. You need to find the surfaced enclosed by ...
1
vote
0answers
50 views

Geometric Median: Is there a Java implementation for Weiszfeld's Algorithm?

I'm trying to calculate the geometric median for a list of 2/3D points. I've already tried different implementations, but I'm still looking for better results. I wonder if there is a Java ...
2
votes
2answers
117 views

How to find the polygon enclosing a point from a set of lines?

I have a set of non-intersecting lines, some of which are connected at vertices. I'm trying to find the smallest polygon, if one exists, that encloses a given point. So, in the image below, out of the ...
1
vote
1answer
64 views

Furthest-point Voronoi diagram in Java

I'm looking for a naive algorithm to find the furthest point Voronoi diagram. Input sizes are not going to be big enough where I need something complex and as there are no Java libraries that I can ...
1
vote
1answer
113 views

Draw Circle Inside a Polygon

I need an algorithm that, given an array of points representing a polygon (which is usually a rectangle-ish shape, but could be any nonregular polygon), and given a point click location within that ...
4
votes
1answer
139 views

python implementation of 3D rigid body translation and rotation

I've been trying to work out how to solve the following problem using python: We have points a, b, c, d which form a rigid body Some unknown 3D translation and rotation is applied to the rigid body ...
0
votes
2answers
159 views

Drawing Arrow in (x,y) coordinate in Python

I have encountered some problem while I was drawing a direction of arrow. I have point (x,y) coordinates and angle of them. What I want to do is that to draw arrow according to the given angle (just ...
-5
votes
2answers
115 views

C++ algorithm for partitioning area of a given dimension into sub-parts with non overlapping borders [closed]

I want to have an algorithm to partition an area of any given dimension into subspaces with non-overlapping borders. For example: With 2 dimensions where lower and upper bound for each dimensions are ...
0
votes
0answers
115 views

Overlap image pixels on a given latitude, longitude?

I have two data: 1. is points and 2. is a Radar image. Here, Radar image is just 2D matrix (shown below) and points are latitude and longitude values (also shown below). The problem is that if I ...
2
votes
2answers
117 views

Objective C / Solving math systems

I've been trying to develop a simple app that calculates the equation of a curve using information given by the user. For example, let's suppose the user has the equation of a circle and the equation ...
3
votes
6answers
371 views

Minimum number of circles with radius r to cover n points

What is the minimum number of circles with radius r needed to cover all n points? r and n will be given as input, followed by n pairs of integers representing the x-y co-ordinates of the n points. r ...
0
votes
1answer
29 views

How to get hemisphere using google map api

I'm using google map api V3 to set map and to do such mapping related functions. Now I want to know about hemisphere of current location that on which side it is from particular location and need to ...
1
vote
1answer
67 views

farthest point voronoi diagram of 3 points

This is really more of a math question. But given 3 points how do you calculate the farthest point voronoi diagram? Start by finding circle that passes through all of them and grabbing its center. ...
-2
votes
1answer
40 views

Determinate the existence of a triangle given a sorted list [closed]

I have come across a problem about the determination of triangle, it says: Given a sorted integer array(length n), determinate whether you could build a triangle by choosing three integers ...
1
vote
1answer
68 views

Multi-dimensional segment trees

The problem I have to solve is the 4D version of the 1D problem of stabbing queries: find which intervals a number belongs to. I am looking for a multi-dimensional implementation of segment trees. ...
2
votes
1answer
63 views

time complexity of line segment or edge intersection finding algorithms

I briefly reviewed the literature on line intersection and line arrangement problems in computational geometry. Most of them are based on plane sweep algorithm. From the angle of computational ...
0
votes
2answers
78 views

Perpendicular to a vector at point on the vector

I am working with a model where I have to calculate a perpendicular to a vector from p1 and p2 (3d) at point p3 on the line joining these points. The arrangement would be some thing like this ...
3
votes
3answers
136 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 ...
2
votes
2answers
182 views

Finding the point of intersection between a line and a cubic spline

I need a way to programmatically find the point of intersection between a line f(x), which originates from the origin, and a cubic spline defined by 4 points. The line is guaranteed to intersect the ...
0
votes
1answer
73 views

blend colors in polygon

I have a polygon which consist of segments of different colors (red and green on sample image). And for each pixel in polygon (grey area) I need to calculate coefficients to obtain the color of ...
-2
votes
1answer
59 views

presort data for balanced quadtree

The PMR Rectangle Quadtree is a quadtree which has an list of (Rectangle) objects in each leaf. This is called a bucket. The structure of this quadtree is dependent on the order of inserting the ...
1
vote
2answers
89 views

get the perimeter of a 2D set of points

I have a set of points in 2D ( coordinates for x and y ), now I need to discard all the points that are not meaningful to me, and what I mean by that is that I'm only interested in the area that this ...
0
votes
2answers
107 views

Find overlap between collinear lines

Given two collinear line segments AB and CD, how do I find if they overlap? How do I locate the start and end points of the overlap? Below is the approach I am using. I am first ensuring that A < ...
1
vote
2answers
188 views

c++ : check if two triangles intersect or not [duplicate]

Problem : Given the vertices of two triangles, check whether both of them have any common interior point. No points on the edges or vertices are considered interior to a triangle. I think this is a ...
0
votes
1answer
75 views

Using a Javascript application with a C++ library to perform operations on SVG paths

I have been developing a graphics editor for SVG's to put in online for my users to access it through their web browsers. It's based on SVG-edit and it written in Javascript. The application at the ...
4
votes
4answers
135 views

Nearest point to point, nearest point to line

Imagine a set of m points in 2D plane, called "candidates". And then one of two scenarios: there is also a set of n points ("objects") - see Fig. 1 there is also a set of n lines collinear with X or ...

1 2 3 4 5 15