Node Assignment Problem

enter image description here

The problem I want to solve is to tessellate the map given with the Blue Nodes(Source Nodes) as given input points, Once I am able to do this I would like to see how many Black Nodes(Demand Nodes) fall within each cell and assign it to the Blue Node associated with that cell.

I would like to know if there is a easier way of doing this without using Fortune's Algorithm.I came across this function under Mahotas called Mahotas.segmentation.gvoronoi(image)source. But I am not sure if this will solve my problem.

Also please suggest me if there is a better way of doing this segmentation(other than Voronoi tessellation). I am not sure if clustering algorithms would be a good choice. I am a programming newbie.

link|improve this question
regarding your first question (about Mahotas.segmentation.gvoronoi): have you tried it? What were the results like? – bpgergo Nov 29 '11 at 17:23
This is a image processing function. I tried to tessalate without the DN(Black Nodes) and gave multiple colors to the Source Node(instead of just blue). I got the segmentation similar to this link – user1071530 Nov 29 '11 at 17:32
feedback

4 Answers

Here is an alternative approach to using Voronoi tessellation:

Build a k-d tree over the source nodes. Then for every demand node, use the k-d tree to find the nearest source node and increment a counter associated with that nearby source node.

The implementation of a k-d tree found at http://code.google.com/p/python-kdtree/ should be useful.

link|improve this answer
Thanks! I will look into this method. – user1071530 Nov 29 '11 at 19:50
you can also use the kdtree in SciPy (scipy.spatial.kdtree) – Jason Sundram Nov 29 '11 at 20:39
@JasonSundram : Thanks. – user1071530 Dec 5 '11 at 22:18
@wye.bee I used the k-d tree method you suggested and it helped me solve this problem and other instances of it. Even though I can see the use of this algorithm, I am not able to intuitively grasp how this is working. Do you recommend any books or tutorials that might help. – user1071530 Dec 5 '11 at 22:19
Wikipedia is a good place to start (note it also has more links to related material at the bottom). en.wikipedia.org/wiki/K-d_tree – Tim Gee Dec 27 '11 at 16:25
feedback

There's not many points in your diagram. That suggests you can, for each demand node, just iterate through all the source nodes and find the nearest one.

Perhaps this:

def distance(a, b):
    return sum((xa - xb) ** 2 for (xa, xb) in zip(a, b))

def clusters(sources, demands):
    result = dict((source, []) for source in sources)
    for demand in demands:
        nearest = min(sources, key=lambda s: distance(s, demand))
        result[nearest].append(demand)
    return result

This code will give you a dictionary, mapping source nodes to a list of all demand nodes which are closer to that source node than any other.

This isn't particularly efficient, but it's very simple!

link|improve this answer
Thanks Paul, but this is just a smaller instance and I will also be working on bigger instances. – user1071530 Nov 30 '11 at 17:28
feedback

Run this code in Mathematica. It's spectacular! (Yes, I know it is not Python, but ...)

pts3 = RandomReal[1, {50, 3}];
ListDensityPlot[pts3, 
    InterpolationOrder -> 0, ColorFunction -> "SouthwestColors", Mesh -> All]

          Voronoi Diagram

link|improve this answer
feedback

I think the spatial index answer by http://stackoverflow.com/users/1062447/wye-bee (A kd-tree for example) is the easiest solution to your problem.

Additionally, you did also ask is there an easier alternative to Fortune's algorithm and for that particular question I refer you to: Easiest algorithm of Voronoi diagram to implement?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.