Polygons are multi-sided objects. This heading should be used when describing issues involving multiple polygons and how they relate to each other, for example, overlap detection.

learn more… | top users | synonyms

2
votes
2answers
20 views

Detecting clusters of white pixels in an image using openCV

Input Image: Expected Output: I intend to fit three (or some number of) polygons (for this case, rectangles) to signify the "big" white blobs in this image. The rectangles drawn in the output ...
0
votes
0answers
26 views

Toggle polygon layers in Google Maps V3

I have been struggling with this for about a month. I have done a lot of research and tried several different things but keep striking out. I have a map that contains polygons that are created with ...
0
votes
1answer
62 views

How to get all polygons from a set of points

I need to get all polygon combinations (convex and concave) from a set of points and don't see the way to do it. I'm thinking in this two approaches Check for each combination to be a planar graph ...
0
votes
2answers
22 views

Trying to build polygon from NSString

So, I'm trying to build an array of CGPoints by breaking an NSString, typically look like this: 31.241854,34.788867;31.241716,34.788744;31.242547,34.787585;31.242661,34.787719 Using this code: - ...
0
votes
1answer
29 views

threejs mesh missing triangle

threejs is having some serious issues with some polygons I'm on their site, viewing their examples. On my computer, It starts out fine, like the first image below, but within a few seconds, becomes ...
-6
votes
0answers
36 views

rewrite algorithm for shape cutting [closed]

Please could someone write this algorithm in JAVA? I want to cut shapes like this one in the link, and get the output polygons. I really need this so any help would be acepted.
0
votes
1answer
65 views

Detect if two polygons have an area in common

I need to know if some part of a Polygon is being shown on screen. I have two ArrayLists of LatLng, one containing the list of points forming the Polygon, and the second one containing the four ...
2
votes
0answers
64 views

Converting polygons into latitude and longitude in R/Excel

I have a data set about all the counties in Minnesota, and one of the columns is its shape. For each county it looks something like this: For Aitkin County: ...
0
votes
0answers
25 views

export data from a figure plotted using 'fill' command

my function plots a graph using 'fill' command which takes vertical and horizontal coordinates from two corresponding matrices X and Y. It also fills the polygons with values from matrix ex and my ...
0
votes
0answers
34 views

How to obtain a region polygon from Google Places Autocomplete

I am trying to use google places autocomplete to search for a place, get its polygon region from mapques/nominatim and render the result in google maps. Here is where I am having difficulties: ...
0
votes
3answers
87 views

Calculate polygon intersection area with GPC or Clipper

I have a 2D particle system, where the particles are represented as ellipses. I need to calculate ellipse - ellipse overlap areas, but this is a hard analytical problem Ellipse-Ellipse Overlap. I now ...
1
vote
2answers
106 views

Algorythm to find polygon that encloses a point - Only lines are defined

I have a 2D drawing with many straight lines. All those lines are mathematically known. And they are independent of the others. You can consider I know start and end point of each line and I can make ...
8
votes
1answer
316 views

Finding the intersection of two 3D polygons

a.k.a. Polygon clipping algorithm in 3D a.k.a. Finding the collision manifold between 2 colliding polygons Most algorithms for polygon clipping are described in detail for 2D and described as being ...
0
votes
1answer
62 views

KineticJS and transformations to a group (skew)

I'm having some trouble to figure out how to solve this. I've a KineticGroup, that holds a polygon inside. Also there is a button (KineticCircle) that stays on the right-top corner of the polygon, ...
0
votes
1answer
40 views

Use apply to intersect all polygons in list A with all polygons in list B in r

I have two lists; both of them contain polygons of the class gpc.poly. The first list is "ptareas": > ptareas $AG00035 GPC Polygon Num. Contours: 1 Num. Vertices: ...
3
votes
1answer
176 views

How to improve a structure storing many results?

I have a Polygon structure and a function with the following signature Polygon myfunction(Polygon &pol1, Polygon &pol2, int rot1, int rot2); in which pol1 and pol2 are Polygons, rot1 and ...
0
votes
0answers
34 views

Fast way to change elements in an object list(R)

I have a SpatialPolygonsDataFrame object, and I want to change each individual polygon ID to match a column in the data.frame component. I can get this done with a for loop or lapply, but it takes ...
0
votes
0answers
47 views

Android UI with collection of shapes/areas that can detect touch events

Background: I am doing a research project and am required to create a complex UI that is composed of a collection of odd shapes (i.e. not rectangles or circles, it would be best described as ...
1
vote
1answer
83 views

Creating a Rectilinear Polygon from geometrically combined Rectangles

I've searched everywhere and I just can't seem to figure it out. I find a lot of articles on the decomposition of rectilinear/orthogonal polygons, but nothing on how to construct one. I'm working ...
0
votes
1answer
73 views

Making nested polygons

I'm trying to use a loop but don't know how to make it work within a loop. Here's what I have for concentric circles, I would like the same idea but with triangles. int x = 100; int y = ...
0
votes
1answer
195 views

Marker cluster number in a polygon or/and infowindow

Here is example When you click on some polygon you got infowindow with the name of these polygon, is possible to put in this infowindow number of markers inside this polygon (same like marker cluster ...
1
vote
1answer
97 views

Display markers in the polygon I zoomed to

Here is my example. I add some code, and when the page is loaded it's possible to see only polygons what's great but when I zoomed to the polygon with this function I get all markers but my dream was ...
0
votes
1answer
77 views

Error with importShapefile with PBSmapping package in R

I am receiving a sporadic error message with importShapefile in PBSmapping (version 2.63.37) in RStudio (0.97.318), running R version 2.15.2, platform: i386-w64-mingw32/i386 (32-bit). I also received ...
0
votes
1answer
156 views

Displaying information within an infobox in Bing Maps

I am using Bing maps to display markers on the map. I am able to display an infobox on the over of this markers. Now my infobox contains a summary which is display somewhat like this var ...
4
votes
1answer
754 views

Initializing Half-edge data structure from vertices

I'm working on implementing various subdivision algorithms (such as catmull-clark); to do this efficiently requires a good way to store information about a grid of tesselated polygons. I implemented ...
0
votes
0answers
74 views

Displaying markers within a Bing maps Polygon

I am using Bing maps to display markers on the map. Now i am adding a functionality where i allow the user to draw a circle around any marker of his choice and let him specify the radius of the ...
0
votes
2answers
154 views

kml polygons and markers together

I have set up a map api v3 with my polygons (kml file) but now I would like to put the markers on the same map. Markers (lat, lang) are coming directly from MySQL database. Here is a code of my page: ...
0
votes
1answer
80 views

remove polygon fillColor and strokeColor after zoom

When you zoom to some polygon I would like to remove (fillColor, stokeColor) that polygon from map. Here is sample: http://mini.hr/stanonline/test2.php Here is method for zooming to selected ...
1
vote
0answers
53 views

Dynamilcally draw polygons using lines on Buffer Grid Image in java

I was able to draw the grid using Bufferimage![enter image description here][1] Now i want to dyanamically draw when mouse press, release and drag and then create polygons using the lines. But lines ...
1
vote
2answers
77 views

Deform points in a plane

Point :: (x y) is known. I have points inside a triangular region. I know the coordinates of the vertices in initial and final positions. I know the initial coordinates of all the points inside the ...
0
votes
2answers
432 views

kml + google maps api v3 + geoxml3

I have one html file that load another kml file. Here is it: http://mini.hr/stanonline/test.php I would like to connect right menu "ODABERI KVART" with polygons on map, polygons are stored in kml. ...
2
votes
2answers
122 views

Check position and merge polygons with delphi

On my application I have 2 or more polygons, a polygon can be inside or outside other (ALL inside or ALL outside). I must do this: check if a polygon is inside (ALL inside without intersections) to ...
0
votes
0answers
57 views

Android MapView. SimpleItemizedOverlay are below painted polygons

I would be grateful if any one of you could help me. I have expend a lot of hours looking for an answer to my problem but nothing worked. In my MapActivity class a couple of polygons are painted by ...
0
votes
1answer
326 views

getpaths() polygons google maps api

I am attempting to retrieve the latlng coordinates of both a polyline and polygon. After I complete the drawing of either object I would like to store the latlng in a database, but for now I am merely ...
0
votes
0answers
154 views

Displaying multiple polygons in Google Maps

Good day, I am working on a javascript loop on displaying multiple polygons with data passed from an array. Each index contains another array with the actual information. ArrayMain Array1 ...
0
votes
1answer
76 views

How to access a specific polygon in a shapefile by using a polygon id?

I have a shapefile created by QGIS which has 25 polygons. I need to access each polygon by using a polygon id. I am using a java application to access these polygons. Please let me know any good ...
1
vote
0answers
186 views

Getting approximate vertices of curved-edge closed shapes (for calculating centroid and other properties)

I'm looking to draw outlines of 2D-closed irregular shapes with curved edges, and then compute both (a) the center of gravity (centroid) of the shape's area, and (b) the center of gravity of the ...
2
votes
2answers
116 views

using bezier curves

I'm creating one custom method for my project which will create polygons. I have this: var c2 = document.getElementById('c').getContext('2d'); c2.fillStyle = '#f00'; c2.beginPath(); c2.moveTo(10, ...
0
votes
1answer
169 views

Google Maps and RouteBoxer will not display polygon lines

Thanks in advance for any help you can provide! I'm using RouteBoxer in Google Maps API V3, but for some reason I can't get the lines to appear. I'm concerned that the function isn't running at all, ...
1
vote
2answers
112 views

How to get a SpatialPolygons (SP-class) from a set of segments (psp in spatstat)?

I have a set of random segments drawing a kind of tessellation (of triangles, rectangles ...) in a window (in spatstat R). I need to convert it into a set of polygons (SpatialPolygons) to calculate ...
1
vote
2answers
118 views

Find neighbouring Polygons Java

I have a series of Polygons, created using the JTS Topology Suite. Each polygon is a set of points, longitudes and latitudes that form a shape, as shown below. ...
1
vote
2answers
135 views

Windows: print simple vector graphics - example?

I want to print some vector graphics (or to be more exact: nothing more than some polylines) using Windows API. Printing has to be done out of an own thread. When I ask Google/MSDN for some ...
1
vote
1answer
129 views

F# convert Vector array to Media.Polygon PointCollection

Different data strucs are good/better for some things not so much for others. Is there a way to convert a Vector array to be used by WPF Polygon? let mutable nodes = [| Vector (100.0, 100.0); Vector ...
0
votes
1answer
435 views

android maps v2 polygon transparency

I'm using Google Maps v2 API for android and I don't manage to control the transparency of the fillColor. I would like to be able to see the map under a filled polygon. Is there a way to do that ? ...
0
votes
2answers
315 views

Is it possible to add a Polygon layer to a google map v3 without using fusion tables

The question is pretty descriptive. I am working on a website that provides locations for filming. All the data in the site is currently stored in a MySQL database including geocode data for google ...
2
votes
2answers
194 views

Find best matching overlapping polygons in R

I have two shapefiles that I have read into R using readOGR() as SpatialPolygonsDataFrame objects. Both are maps of New Zealand with different internal boundaries. One has about 70 polygons ...
4
votes
2answers
146 views

Fast algorithm to uncross any crossing edges in a set of polygons

I have a number of polygons each represented as a list of points. I'm looking for a fast algorithm to go through the list of polygons and uncross all of the crossed edges until no crossed edges ...
0
votes
1answer
98 views

MapInfo SQL for skeleton of polygon

I would like to know if anyone has found a way to make an SQL query in MapInfo (I use 11.5) that can calculate the skeleton of a polygon that has multiple intersections AND generate the polyline for ...
0
votes
0answers
251 views

google maps polygon outline color vary when polygons overlap

(I posted this in the google maps forum before I saw a specific one for the API. oops) I have a google maps webpage where I am trying to draw a lot of polygons. Currently using Google maps api v3.8 ...
1
vote
0answers
193 views

Polygon not is not filling in android mapview

I am trying to draw a filled polygon on a map view in my app. No matter what I have tried it will not draw filled in. I can get the strokes to show up but I can not get it to fill. Below is the draw ...

1 2 3 4