Tagged Questions
The edges tag has no wiki summary.
5
votes
1answer
276 views
Get graphviz to draw nodes above edges
Is there any way to force graphviz to always draw the nodes above edges even if the edge is drawn over (or preferably under) the node?
So far I have tried ordering them and different layer options ...
4
votes
2answers
481 views
Creating a graph with edges of different colours in Mathematica
I want to create a graph (Graph Theory) where certain edges have a different colour to other edges, which would be used to highlight a path in the graph from one vertex to another.
Here are some ...
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
1answer
107 views
Boost Graph Library: edge insertion slow for large graph
I'm trying to use implement an "intelligent scissor" for an interactive image segmentation. Therefore, I have to create a directed graph from an image where each vertex represents a single pixel. Each ...
3
votes
4answers
567 views
Graph auto-layout algorithm
To simplify the problem, I have a graph that contains nodes and edges which are on a 2D plane.
What I want to be able to do is click a button and it make the automatically layout the graph to look ...
2
votes
2answers
93 views
Rounded edges in picturebox C#
How to round edges in picturebox control. I Want to get angles like ellipse have but i dont know how to do it. I Use C#. Thanks!
2
votes
2answers
229 views
Java Graphics.fillPolygon: How to also render right and bottom edges?
When drawing polygons, Java2D leaves off the right and bottom edges. I understand why this is done. However, I would like to draw something that includes those edges. One thing that occurred to me ...
2
votes
2answers
147 views
How to find Edges and Vertices of a hand drawn polygon
I would like to make a shape recognition program that would trace a mouse and record it's location at each 1/2 second. how could I use these points to find a rough polygon? In other words, if you just ...
2
votes
1answer
192 views
Coloring walk edges in networkx
I've written a simple code to generate a random walk in a given graph G using the networkx library.. Now, as i take the walk, I want the edges to get colored and drawn using matplotlib.. say in a ...
1
vote
1answer
258 views
How do I make a CSS triangle with smooth edges?
I have a triangle (JSFiddle) using this CSS:
.triangle {
width: 0;
height: 0;
border-top: 0;
border-bottom: 30px solid #666699;
border-left: 20px solid transparent;
...
1
vote
0answers
139 views
Spring Graph Algorithm w Node size
I need to do some graph layout drawing and have been looking at using something like the Spring layout algorithm as implemented here and discussed here
However my nodes all have a width and height ...
1
vote
1answer
277 views
how to optimize layout in graphviz to remove unecessary edges intersections (crossings)?
I am preparing the automaitc documentation of DB relations. The tool is graphviz. Problem I have is that the placement of nodes on the output image is not opptimal and there are many unecessary ...
1
vote
2answers
399 views
Framework to draw Edges and Nodes using GWT
I am searching for framework to draw Edges and Nodes. I want to create a visual graph and It should be draggable.
I tried http://code.google.com/p/gwt-diagrams but this project is down.
What is your ...
1
vote
1answer
149 views
Very general question about the implementation of vectors, vertices, edges, rays, lines & line segments
This is just a LARGE generalized question regarding rays (and/or line segments or edges etc) and their place in a software rendered 3d engine that is/not performing raytracing operations. I'm learning ...
0
votes
0answers
19 views
Triangulate points with edges
I have a set of points + edges connecting pairs of them. There are enough edges so that one can triangulate the points by choosing a subset of the edges; That is exactly what I want to do - find a ...
0
votes
0answers
26 views
Dot2Tex: Autosize with Straight Edges?
I may be nitpicking a bit, but I'm trying to generate compact but straight-edge graphs within a dot2tex environment.
Without Autosize (i.e default behaviour) I get something like this:
Which is ...
0
votes
0answers
53 views
ExtJs3: Constrained window resize
Here is the example code.
var panel = new Ext.Panel();
new Ext.Viewport(
{
layout: 'fit',
items: panel
});
And the window which is rendered to it's .el and constrained in it:
var window = ...
0
votes
2answers
36 views
Footer issues: Can't extend to edges of window
I can't seem to get my footer to extend to left and right edges of the browser window. I've been trying everything, but I can't get it to work. How would I do this?
Thanks
0
votes
1answer
585 views
In OpenGL ES 2.0, how can I draw a wireframe of triangles except for the lines on adjacent coplanar faces?
I vaguely remember seeing something in OpenGL (not ES, which was still at v1.0 on the iPhone when I came across this, which is why I never used it) that let me specify which edges of my polygons were ...
0
votes
0answers
62 views
Round edges and lightbox
I'm doing a site where there is 4x4 grid of round edged images.
These images are, let's say, 200x200px.
They are all in the same class, which has round attributes in CSS.
So, i have 16 divs which ...
0
votes
0answers
45 views
tensors , saliency points & edge directions?
i am supposed to use tensor voting technique in some image processing ,, and really i am not aware of the concept of tensors,,
i have a ready made framework implementing it
the code is using an ...
0
votes
0answers
15 views
Find the middle of a series of edges in Java
First the context: I'm working on a road map application just like Google Maps. People can find a route between two specific addresses, but they should be able to use just the road name - that is ...
0
votes
1answer
234 views
Jung weighted edges from graphml
I am using Jung 2.0. I have a graphml file with weighted edges. I am using a graphml reader to read the file and create the graph. When I visualize the graph with a FRLayout, I observe that the graph ...
0
votes
1answer
294 views
graphviz: direction of edges in terms of color
Hi
Can I get graphviz to color the edges in a way that identifies the direction? For example, the part of the edge near its source node might be blue and then it gradually shades away to red as it ...
0
votes
1answer
82 views
weird gui component edges!
I developed my application and tested it on android emulator 1.6, 2.1 & 2.2 and on HTC Magic
its running PERFECTLY and the gui components look very neat...
However, when I tested it on Sony ...
0
votes
1answer
113 views
edge sequence by vertex name
Hy Everybody!
Well, I'm working with the Igraph package, and i'd like to pick the edges by the name that I've assigned to their vertex, in a tiny example..
library(igraph)
g <- barabasi.game(8)
...
0
votes
2answers
503 views
How To Blur Image edges in Iphone
I have three UIImages added to three UIScrollviews that are positioned one under the other.
I am trying to find a way to blur the adjacent edges that are between two scrollviews but am unable to find ...
0
votes
2answers
203 views
construct graph from python set type
The short question, is there an off the self function to make a graph from a collection of python sets?
The longer question: I have several python sets. They each overlap or some are sub sets of ...