The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
113 views

Forcing orthogonal (vertical or horizontal) edges with dot

I would like to force dot displaying only vertical or horizontal edges between nodes. I have found a similar request with the post Family tree layout with Dot/GraphViz, but I am not dealing with ...
0
votes
1answer
54 views

Networkx graph: finding if path exists between any node in a given set of nodes and another set of nodes

I have a large undirected graph with hundreds of thousands of nodes and tens of thousands of edges. I have two separate problems: 1) For a set of nodes N = (node[1], node[2], node[3], node[4], ...
1
vote
0answers
61 views

Java - Creating Dynamic Vertex + Edges (Dijkstra Algorithm)

I'm trying to generate Vertex + edges dynamically, but I'm getting errors when I try to compute the shortest path between coordinates. TestDijkstra3.java: package maze_drawing; import ...
0
votes
2answers
178 views

Find array of edges with imageJ

I have already found edges of an image thanks to imageJ library. Now, I'd like to get an array which would contain these edges. There is a topic about it here but i couldn't comment and there wasn't ...
-1
votes
0answers
29 views

How to make a route planner algorithm and a “graph” to search through?

I'm working on a small route finder algorithm based on the A* search algorithm. I have the pseudo code for the algorithm and have only a few problems implementing it, nothing worth mentioning yet ...
2
votes
1answer
144 views

Building a graph from a list of edges

Given a graph datatype as follows: data Graph = Int :~> [Graph] infixr :~> and a list of edges like this: edges = [(10,1), (10,5), (1,2), (2,3), (5,6), (5,9), (9,8)] What is the function ...
0
votes
2answers
42 views

Issue with graphviz never completing

Can someone help me figure out why the following graph never generates in dot? I think the problem has something to do with the headport and tailport. It works if I take those out, but ideally I want ...
0
votes
0answers
58 views

Android OpenGL ES 1 - Polygon Edge

I am drawing a an arrow in using opengl es 1.0. I drew the arrow using a rectangle as the shaft and a pyramid as the tip. When the arrow is rotating from certain angles the shaft can be seen through ...
0
votes
2answers
85 views

Python networkx : edge contraction

I have a networkx graph. I would like to know how to do edge contraction between multiple nodes. For example if i wanted to contract X, Y and Z: _ node A _ _/ | \_ node X --- ...
0
votes
0answers
54 views

Tiled Map renders correctly on PC but not on Android

I have this code for rendering a map made with Tiled, composed of 1000x1000 32*32px tiles : // Poll input fisico pollHWKeyboard(); camera.update(); renderer.setView(camera); renderer.render(); ...
3
votes
1answer
148 views

Controlling which edges are visible in a network diagram in igraph in r

I have a the following diagram created in igraph set.seed(1410) df<-data.frame( "site.x"=c(rep("a",4),rep("b",4),rep("c",4),rep("d",4)), "site.y"=c(rep(c("e","f","g","h"),4)), ...
0
votes
1answer
314 views

neo4j: Adding multiple properties to Nodes and RelationshipTypes in neo4j graphDB

I want to build a social network graph from Facebook data in neo4j (java). I'm trying to search for relevant examples to understand these concepts but still unable to get any of those specific kinds. ...
3
votes
1answer
170 views

Minimize set of edges in a directed graph keeping connected components

Here is the full question: Assume we have a directed graph G = (V,E), we want to find a graph G' = (V,E') that has the following properties: G' has same connected components as G G' has same ...
1
vote
1answer
75 views

Number of ways n-1 edges may be chosen to form a connected graph with n nodes

Basically, you require n-1 edges, to make a connected graph with n nodes. I would like to know if there is any theory behind finding the number of distinct ways you can select the n-1 edges, from the ...
0
votes
0answers
34 views

Jagged edges, downsizing, wideimage library

I'm using this wonderful library from http://wideimage.sourceforge.net/ However when I downsize certain images (especially ones of high contrast) I get serious jaggies. I'm not certain why this is. ...
1
vote
0answers
101 views

CSS transform, Jagged Edges in chrome

i have a problem with jagged edges in chrome. Rest of browsers supporting this good but only chrome make this edges horible. Fiddle here: http://jsfiddle.net/2HZ8A/ I tried with ...
0
votes
3answers
101 views

CSS Style not reaching edges

On my website, the header is a div tag with a coloured background. The only problem is that it doesn't reach the "edges" of the window (Please see http://manpoints.uk.to/). Any ideas of how to solve ...
3
votes
1answer
93 views

Least number of edges that appear in every path

I need to find the least number of edges in a graph that appear in every path from the first vertice to the last. For example - in the image if the first vertice is V0 and the last vertice is V8 then ...
0
votes
1answer
64 views

web graph for a set of websites using python

I have exteracted a set of urls which are on same topic. I want to find links between them so that i can form graph using python. the urls or websites would represent as nodes and links between them, ...
2
votes
1answer
310 views

Drawing a Control Flow Graph

My task is to make a control flow graph. First, I have managed to seperate my code into basic blocks. For example, this program here: 1 begin 2 int x, y, power; 3 float z; 4 input (x, y); 5 ...
0
votes
1answer
239 views

Adding node items to Java Graph with for loop

I'm trying to add newly created objects to a grid and to a graph. Specifically, how to efficiently add nodes to a graph with a for loop. They grid has been set up as a double array, in order to update ...
0
votes
0answers
49 views

Using Graphchi scheduler

Need some help understanding the role of scheduler in Graphchi package. if some of the vertex is not getting updated for sometime but they might get in the future so using scheduler, can it block some ...
0
votes
2answers
129 views

how to get hard edges - OpenGL

How can I get hard edges on my terain. I have a simple ambient and diffuse shader in GLSL. I think that the fragment shader is interpolating the vertex normals and causing smooth shading. Do you guys ...
2
votes
2answers
172 views

Creating a Graph Query Language (Node/Edge/HyperEdge)

I'm creating an API that encapsulates JPA objects with additional properties and helpers. I do not want the users to access the database, because I have to provide certain querying functionality for ...
3
votes
1answer
188 views

shapefile to neural network in R

I need to convert a shapefile (ESRI) of roads type SpatialLinesDataFrame in a neural network in R. I do not know how to remove nodes or vertices of the shape. Determine the length of each edge ...
1
vote
0answers
114 views

I need help understand the Graph ADT

So I am currently using the textbook "C++ Data Structures 3rd Edition", and I have taken some code out of the book. I need help understanding why I keep getting the same three errors. Again the .h and ...
1
vote
1answer
226 views

bellman ford algorithm trace

I don't know where else to post this question, I just want to know if I did this trace correct. I am given this diagram and here is the question: Show the trace of the Bellman-Ford algorithm on ...
6
votes
1answer
218 views

Android issue: View with endless scrolling

I have a custom View with scroll implemented, but it seems like an ENDLESS scrolling over the image. Even when I find the edge of the image, it keeps scrolling to a blank background. I can't use a ...
1
vote
0answers
96 views

Graph: Algorithm for Grouping/Clustering by common edges

First of all I'm sorry if my english is a bit off (it's not my mother language). I'll try my best to make myself understood. I'm making a visualization project for my master thesis and I've come up ...
0
votes
0answers
49 views

Is there any technique to smooth the edges of a PHP processed transparent PNG?

Here is the code I've created to do what I needed to do. It works, but the saved PNG has jagged edges.. $imagetype = exif_imagetype($_FILES['feedpic']['tmp_name']); // gets image type ...
0
votes
1answer
356 views

How to implement Dijkstra's algorithm in Prolog returning a list of edges?

I've been trying for a while now to implement a Dijkstra shortest path algorithm in JIProlog. There are a few implementations available online, such as here and here, but they all return the path as a ...
3
votes
2answers
203 views

Draw a graph from a list of connected nodes

In a system I Have a list of nodes which are connected like in a normal graph. We know the whole system and all of their connections and we also have a startpoint. All my edges has a direction. Now I ...
1
vote
2answers
294 views

R igraph convert parallel edges to weight attribute

I'm working with igraph for R. My graph is based on an edgelist which includes parallel edges (more than one edge with the same source and target). I would like to convert these parallel edges to an ...
4
votes
1answer
568 views

Jung coloring vertex with value

I'm stuck at the moment with the Java library Jung. I display vertices and edges, only I can not find any functions for vertex coloring that I need with the value of the vertices and not with the ...
1
vote
0answers
19 views

In Need of “Space-Consuming” App to Act as Snap-able Edges on a Netbook

I have next to me an eMachines netbook that has a damaged screen. What I would like to do is set up a program that docks at the top and right side of the screen where the damage makes the screen ...
0
votes
1answer
108 views

Prefuse API java creating edges

I am using prefuse lately to make some visualizations. What I do is I load some information from a database, make a prefuse table instance for them and make a graph based on that information. This ...
0
votes
2answers
237 views

igraph how to get edge ids along the shortest paths

I have a graph with multiple shortest paths and want to retrieve the ids of the vertices and the ids of the edges: igraph_get_all_shortest_paths(...) computes only the list of the vertices. Isn't ...
0
votes
0answers
169 views

How to implement cosine similarity in this tree [closed]

I have been going nuts over this problem for quite some time now. I need to use agglomerative clustering with cosine similarity for some data I'm working with. The image below shows how it worked on ...
0
votes
1answer
137 views

JAVA Casting error

Im creating a program that uses Dijksrtras algorithm, im using nodes that represent cities on an imported map, and you can create edges between two cities on the map. My problem is every edge has a ...
0
votes
0answers
160 views

WPF diagram control with nodes and edges [closed]

I am looking for simple diagram control for WPF which let me create network of nodes and edges by click and dragging. And I can move the nodes along with edges
1
vote
1answer
314 views

How to make several links between two nodes (java)

Im trying to write a code where you select two nodes and create one or several connections between them. The problem is i can only create one connection, the connection consists of a to-edge and a ...
0
votes
1answer
231 views

Build tree from edges

I have the edges and i want to build a tree with it. The problem is that i can construct my tree structure only when edges are in specific order. Example of orders: (vertex, parent_vertex) good: ...
2
votes
2answers
494 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
119 views

Constructing a graph from points with edges determined by a Euclidean distance cutoff

I have a collection of points in R^3 with a Euclidean distance metric. I would like to construct a graph with each point represented by a node, and edges only between points with distance d < r, ...
1
vote
1answer
517 views

OrientDB GraphED - SQL insert edge between two (select vertex RID)s? Or alternative approach for very large import

For example, two simple vertices in an OrientDB Graph: orientdb> CREATE DATABASE local:/databases/test admin admin local graph; Creating database [local:/databases/test] using the storage ...
2
votes
2answers
1k 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!
0
votes
0answers
101 views

Graph Generating API for PHP [closed]

I am looking for an API to generate a graph from an array of results I am getting from PHP. It should have a node and an edge like a tree graph. My array values are like this: [1] David Beckham ...
0
votes
1answer
601 views

Rough Edges Converting SVG to PNG with PHP

I'm using the following script to generate an scaled up PNG version of an SVG. <img src="barrington.svg" width="418" height="188"/> //comparison <?php $im = new Imagick(); ...
1
vote
1answer
370 views

R igraph add.edges() with attributes

Assign during add.edges() an attribute, like width: g <- add.edges(g,c(from,to), attr= width <- 1 ) Error message: please supply names for attributes
0
votes
1answer
1k views

Drawing multiple edges between two nodes with d3

I've been following Mike Bostock's code from this example to learn how to draw directed graphs in d3 and was wondering how I would structure the code so that I could add multiple edges between two ...

1 2