The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
2answers
1k 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
43 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 ...
3
votes
1answer
173 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 ...
3
votes
1answer
191 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 ...
2
votes
1answer
313 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 ...
1
vote
1answer
834 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 ...
0
votes
1answer
19 views

Android - How to check the display edges

hi I'm working with the animations, I currently have 4 directional buttons, depending on which button I press, the image will move in that direction. My problem is so that the image goes beyond the ...
0
votes
1answer
65 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, ...
0
votes
1answer
253 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
1answer
109 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
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
1answer
234 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: ...
0
votes
1answer
236 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) ...
3
votes
0answers
606 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 ...
2
votes
0answers
69 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 ...
1
vote
0answers
104 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 ...
1
vote
0answers
118 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
0answers
103 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 ...
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 ...
1
vote
0answers
65 views

Determining max number v(G) of independent edges in graph G

I have been working on this graph theory problem for a while now with a couple of partners. We have gotten bit stuck and would love a hint to push us in the right direction. Here is the question: The ...
0
votes
0answers
66 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
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(); ...
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. ...
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
0answers
50 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
0answers
97 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
28 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 ...