For issues relating to the creation and rendering of polygons in graphical user interfaces.

learn more… | top users | synonyms

1
vote
1answer
86 views

MousePressEvent catches signal unnecessary- PyQt4

So I have a QraphicsScene with a QGraphicsPolygonItem , which I flag as movable. And I also override the MousePressEvent. My code snippet tll now. def mousePressEvent(self , e): self.endx = e.x() ...
3
votes
1answer
512 views

Polygon Intersection with Line | Python Shapely

I have been trying to use shapely to find the intersection of a line and a polygon, but I'm having issues with some floating point numbers. Example code: polygon = [(4.0, -2.0), (5.0, -2.0), (4.0, ...
10
votes
1answer
179 views

Drawing outlines around multiple geom_point groups with ggplot

I currrently have the code included below to draw this: What I am trying to do is get the outline for each of the groups to follow all of the points in each group - rather than skip some of them as ...
2
votes
2answers
195 views

Efficiently merging and reducing polygons with Python

What's the most efficient way, preferably in Python, to merge and simplify several polygons into the equivalent shape but using much fewer polygons? I'm attempting to graph zip code regions, as ...
3
votes
3answers
232 views

Algorithm for polygon with weight on vertices and operations on edges

I am thinking about the algorithm for the following problem (found on carrercup): Given a polygon with N vertexes and N edges. There is an int number(could be negative) on every vertex and an ...
0
votes
1answer
176 views

How to draw a polygon from a set of unordered points

Currently, I am using a convex hull algorithm to get the outer most points from a set of points randomly placed. What I aim to do is draw a polygon from the set of points returned by the convex hull ...
10
votes
3answers
406 views

Polygon inside polygon inside polygon

I have number of simple polygons which do not intersect each other but some polygons may be embedded into others. For example: +--------------------------------------------+ | ...
3
votes
1answer
130 views

Shaded polygons in R with linear constraints

I have 6 linear constraints. I know how to find solution to this problem both by hand and via r. I am looking for an easy way to obtain illustration for a feasible region. I tried ggplot2 to do so ...
0
votes
1answer
123 views

Google Maps - Create a polygon around existing markers

I dont know if this is possible but I use a google map to plot out positions of entities via markers on an overlay. I would like to be able to create a polygon or some other sort of overlay object ...
0
votes
1answer
220 views

How to draw a Polygon on MapView, fill it, and put a onTouch Event on it

Is it possible to set an EventListener in a drawn Polygon in a osmdroid MapView Overlay ? I would like to print on a Overlay and after touching it I would like to change its color or handle data ...
2
votes
2answers
206 views

Contour approximation containing undesired points

Hi there i have a polygon problem. I don't know what to look for so i decided to ask here. The image below shows a simple shape. The contours are detected with OpenCV's findContours() and aproximated ...
2
votes
1answer
175 views

How to find the elevation of a lon/lat polygon

I am trying to create an application that uses terrain information about an area. I use lon/lat (4326) polygons from a kml file and store the geometries in postgis. I need to find the elevation ...
0
votes
2answers
129 views

C# polygon to mask?

I have x, y coordinates of all vertices of a polygon, say (1,1) (20,10) (10,30), how do I generate a mask with all pixels inside the polygon being 1 whereas outside being 0? I know there is a function ...
1
vote
2answers
115 views

Polygon overlap, specific case

I've implemented a function to check the overlapping of two polygons, p1 and p2, to verify if p1 overlaps p2 the function takes every edge of p1 and test if one point of it is inside p2 and not on an ...
0
votes
2answers
169 views

Google Maps Polyline to Postgis with Java/Hibernate

I have a page where the user enters the starting point and ending point and I show de route in the map. I would like to know how to get this polygon (polyline) and save it in Postgis through the Java ...
0
votes
0answers
78 views

Cutting a smaller polygon image within an image client side

I'm pretty new to all of this, but I'm currently working on a pet project where I'm trying to allow a client to slice an image into sometimes onconventional polygons. I originally planned to this by ...
0
votes
1answer
62 views

Polygon with vertex from a set of point

how can i make a polygon from given set of point. possible polygon : invalid polygon : the polygon must be not self intersecting. i have been thinking about sorting the point based on one ...
0
votes
1answer
56 views

Unable to assign name to polygon

I am trying to assign a name to a polygon, however visual studio keeps giving me an exception: 'The invocation of the constructor on type 'Isometric_Turtle_Simulator.MainWindow' that matches the ...
0
votes
0answers
48 views

Algorithm for Voronoi Connected Corners/Edges List

I've been working with a JavaScript implementation of a Voronoi Library (specifically Robert Hill's -- https://github.com/gorhill/Javascript-Voronoi ). It returns a pretty standard structure with an ...
1
vote
1answer
143 views

Area Of A Polygon In WinRT XAML C#

I need to determine the area of a Polygon object that's been drawn on a Canvas in a Windows Store App (WinRT) in XAML/C#. It looks like they stripped the Geometry.GetArea() from the WinRT libraries, ...
1
vote
1answer
93 views

matplotlib colored segment of a function plot

I wonder if there is a more elegant way to draw the polygon in below code, or with a special plot function or parameter ? import numpy as np import matplotlib.pyplot as plt from scipy.stats import ...
0
votes
0answers
313 views

google maps api v3 add new polygon vertices without crossover or self-intersecting

Seems like this one maybe too hard even for the gurus so I will try and re-word it to try and get some response: I am trying to add a vertex or vertices to an existing polygon intelligently without ...
0
votes
1answer
37 views

Is the centroid of plane a point on it

I want to know if the centroid of a plane can actually be treated as a point on the plane.I have a few points on the plane from which i deduced the centroid.I would like to know if i substitute this ...
0
votes
3answers
185 views

Calculating total coverage area of a union of polygons

I have a number of 2D (possibly intersecting) polygons which I rendered using OpenGL ES on the screen. All the polygons are completely contained within the screen. What is the most timely way to find ...
1
vote
2answers
464 views

How to find the area of a complex polygon - c++

For non-complex polygons, it's pretty simple: A = 1/2 * (x1*y2 - x2*y1 + x2*y3 - x3*y2 + ... + x(n-1)*yn - xn*y(n-1) + xn*y1 - x1*yn) Here is my implementation in C++: struct Point { double ...
-1
votes
1answer
110 views

Algo to find polygon separating two sets of points in 2D space

I have a set of points in 2D space. The points are of two different types (say few points are black in color while rest are white). I need to find an algorithm to find a polygon separating the two ...
0
votes
1answer
72 views

Bing Maps REST can't draw polygon with console app

As a console app, I'm creating maps with Bing Maps, with lat/lon and pushpins. Saving as a jpg. Everything is working great. NOW, however, I'd like to draw a polygon layered on said map[s]. It seems ...
0
votes
0answers
129 views

ObjectiveC iphone - draw resizable polygon

i'm working on an iphone scanner app. i would like to draw a resizable polygon (user can drag/drop it, resize, move one edge) over an image, to let user to select the area he want to keep. look the ...
8
votes
2answers
553 views

Algorithm for finding a point in an irregular polygon

Imagagine I have a polygon like the following: I am looking for a C# algorithm with whom I can find a point (could be the middlepoint or also a random point) inside any polygon. For finding the ...
0
votes
1answer
42 views

How to find the coeffecients(a,b,c,d) of a planar polygon

Given the normal of the plane,Centroid of the plane,the bais vectors,and some(>4) points on the plane , i want to find out the co-effecients(a,b,c,d) of the planar polygon. Is there a better way than ...
1
vote
1answer
184 views

Operation on polygon - how to sort found vertices

I have two concave polygons on input represented as two vectors of points. I want to do some polygon operation on it - union, intersection and difference. I found intersection points between these ...
-3
votes
1answer
168 views

osmdroid draw polygon on map

I want to draw something like this: gooogle maps example but using osmdroid with OpenStreetMaps. I have a set of GPS points prepared but I cannot find ay working example Has anyone done this?
1
vote
3answers
100 views

“ray through vertex” special case when detecting point in polygon

To detect if a point is in a polygon, you project a line from the point, to infinity, and see how many of polygon's vertices it intersects with... simple enough. My problem is that if the ray ...
1
vote
1answer
71 views

Rectangle with cutted triangle

How to make something like that in css?
2
votes
3answers
686 views

3D polygon in JavaFX

Is there a 3D polygon in JavaFX (similar to QuadArray in Java3D)? If there isn't what is the simplest way to create one? Creating two triangles? If there is no simple way than should I use 3rd party ...
1
vote
1answer
74 views

Image clipping by concave polygons on OpenCL

Is image polygon clipping possible directly on OpenCL? Or is OpenGL interoperability necessary for this? If this is possible directly on OpenCL, I think this problem could be reduced to the filling ...
2
votes
1answer
666 views

Transparency with polygon command

I used the polygon command in R which created an area in the plot. However, the values in this area are not shown whereas the main aim is to monitor these values. Does anyone know how to handle this? ...
1
vote
1answer
336 views

Difference between multipolygon and polygon in PostGIS

Good morning every body; Can any one tell me the difference between point and multipoint? linestring and multilinestring? polygon and multipolygon? In PostGIS What is the secret behind defining ...
0
votes
0answers
106 views

Triangulations of a non-convex polygon [closed]

Given a polygon (not necessarily convex) with at most 12 vertices, how to find the number of its different triangulations? For convex polygons the answer is "Catalan numbers", of course.
0
votes
0answers
95 views

How to use bing maps polygon and Surface Tags

I am using the WPF bing maps control in a Surface SUR40 application. I need to implement a final feature that I have no idea how to handle it corrcetly. The goal is to have a physical object with a ...
0
votes
0answers
168 views

google maps polygon outline color vary when polghons overlap

I have a google maps webpage where I am trying to draw a lot of polygons. Currently using Google maps api v3.8 (Firefox 17.0.1 under Ubuntu 10) via: <script type="text/javascript" ...
0
votes
0answers
73 views

How to find matching polygons for assembling pieces of puzzle? (Any Advice) [closed]

I am trying to assembly pieces of puzzle (like jigsaw puzzle), these pieces are 2d polygon images.I read many science papers. I found Daugles Peucker algorithm and wrote codes in c#. then I found ...
1
vote
1answer
97 views

Boost polygon library Boolean function computation time

Have anyone used the Boolean function of Boost polygon library? Boost polygon library It says that the algorithm is O(nlogn) in time complexity, n = #points I input 200000 random generated polygons ...
7
votes
4answers
117 views

Simplifying Java method with variable amount of arguments

Working in java, I was wanting to simplify a draw function (polygon creator) that I am working with. Typically, when you create a polygon, you do this: Polygon mypoly = new Polygon(); ...
1
vote
0answers
75 views

How to equally subdivide a closed CGPath?

I've an indeterminate number of closed CGPath elements of various shapes and sizes all containing a single concave bezier curve, like the red and blue shapes in the diagram below. What is the ...
2
votes
0answers
84 views

In Google Map V3, how to put a label inside and above a polygon?

In Google Map V3, how to put a label inside and above a polygon? There's no label overlay as in V2 When I use the library maplabel, I can put the text inside, but not above, even if I specify an ...
0
votes
0answers
393 views

Check if dbgeometry dbgeometry/dbgeography point is within a polygon

I have a problem I hope you guys can help me solve. I have got a DbGeometry point (or DbGeography, I can use both) and I would like to check if this is within a DbGeometry Polygon (alternatively a ...
1
vote
1answer
190 views

Postgis ST_Contains polygon one table

I have a postgis spatial table with polygons in it, having an id (gid) and a geometry column named way (which actually stores the polygon boundary). The tablehead looks as follows: || gid (integer) | ...
1
vote
1answer
415 views

Sorting clockwise polygon points in MATLAB

I have 2 vectors that are x and y coordinates of the 8 vertexes of a polygon x=[5 5 7 7 9 9 5 7] y=[8 6 6 8 6 8 10 10] I wanna sort them (clockwise) to obtain the right vectors (to draw ...
0
votes
1answer
194 views

Export a polygon from an R plot as a shapefile

I have been trying to export the content of a plot (lines/polygons) as a layer/shapefile that I can open in ArcMap. These are some of the libraries that I have been using, library(shapefiles) ...

1 3 4 5 6 7 21