Tagged Questions
The boost-graph tag has no wiki summary.
29
votes
3answers
892 views
Extracting segments from a list of 8-connected pixels
Current situation : I'm trying to extract segments from an image. Thanks to openCV's findContours() method, I now have a list of 8-connected point for every contours. However, these lists are not ...
12
votes
1answer
5k views
How to create a C++ Boost undirected graph and traverse it in depth first search (DFS) order?
How to create a C++ Boost undirected graph and traverse it in depth first search (DFS) order?
9
votes
9answers
2k views
Use a Graph Library/Node Network Library or Write My Own?
I'm trying to decide between going with a pre-made graph/node network library or to roll my own.
I'm implementing some graph search algorithms which might require some significant customization to ...
7
votes
1answer
113 views
Boost Graph Library: Potential Bug
BGL's depth_first_search algorithm sometimes calls back_edge() on visitors even if there are no cycles in the graph. By definition of back edge, and according to Boost's DFS Visitor Documentation, ...
7
votes
2answers
497 views
Get specific edge with boost::graph
I'm using boost::graph and I have two vertex_descriptors. What is the quickest way to get the edge between them, without iterating over all the edges?
6
votes
2answers
2k views
Boost graph library online tutorial
is any tutorial/introduction available online about the c++ boost graph library?
I haven't found much so far.
Thank you
5
votes
3answers
742 views
reducing memory requirements for adjacency list
I'm using adjacency_list< vecS, vecS, bidirectionalS ... >
extensively. I have so many graphs loaded at once that memory
becomes an issue. I'm doing static program analysis and store the
callgraph ...
4
votes
2answers
297 views
How to fit a custom graph to the boost graph library template?
I'm rusty on C++ templates and I'm using the boost graph library (a fatal combination). I've searched the web and can't find any direct instructions on how to take a custom graph structure and fit ...
4
votes
4answers
260 views
Performance issue with graph incremental construction
I am working on a software where i have to create a graph (using boost::adjacency_list).
The incremental insertion of vertices takes an extremely long time.
Until now, i hadn't worked on the issue, ...
4
votes
2answers
1k views
Boost Graph Library: Is there a neat algorithm built into BGL for community detection?
Anybody out there using BGL for large production servers?
How many node does your network consist of?
How do you handle community detection
Does BGL have any cool ways to detect communities?
...
3
votes
2answers
75 views
Is it possible to apply breadth-first search algorithm of boost library to matrix?
My task is to find the shortest way in a matrix from one point to other. It is possible to move only in such direction (UP, DOWN, LEFT, RIGHT).
0 0 0 0 1 0 0 0
1 0 0 0 0 0 0 0
0 0 0 1 0 1 F 0
0 1 0 1 ...
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
77 views
Avoiding the use of temporary files, when the function wants a FILE * passed
I currently use C++ to do some graph related computation using boost::graph.
boost::graph can output its graph as a dot file and I use a std::stringstream to capture the output dot file. Thus the ...
3
votes
1answer
185 views
Boost::graph Dijkstra : initially populating the queue
I'm using boost::graph and its Dijkstra implementation.
I want to compute THE shortest path from a set of vertices to another set of vertices.
I do not want to compute all the possible paths between ...
3
votes
1answer
160 views
How to get port identifiers for an edge using Boost Graph Library?
Using the Boost Graph Library, is it possible to get the port identifiers for an edge?
Example: After calling read_graphviz, I can iterate through the edges of this graph and print their node_ids -- ...
3
votes
2answers
235 views
Using boost::depth_first_search with Visitor
As the title suggests, I'm using boost::depth_first_search and using a Visitor (inheriting from boost::default_dfs_visitor) to implement some algorithm.
However, during the algorithm's run, I want to ...
3
votes
2answers
345 views
Can I implement potential field/depth first method for obstacle avoidance using boost graph?
I implemented an obstacle avoidance algorithm in Matlab which assigns every node in a graph a potential and tries to descend this potential (the goal of the pathplanning is in the global minimum). Now ...
3
votes
1answer
731 views
Boost graph libraries: setting edge weight values
I am investigating the use of the boost graph libraries in order to apply them to various network problems I have in mind.
In the examples I have been looking at the graph edge values ("weights") are ...
2
votes
2answers
107 views
C++ and generic graph distance algorithm
My problem is the following. I am learning C++ by writing a graph library and want to make use of as much generic programming techniques as possible; hence, answering my question through "use BOOST" ...
2
votes
1answer
68 views
custom properties for edges in the BGL
I started using the BGL for some graph-related task. I have a large number of edges and each edge has several properties, one of which is its weight. (All properties are floats and ints). Since I ...
2
votes
1answer
66 views
Efficiently expand set of graph edges
I have a set of edges from a graph, and would like to expand it with all edges that share a vertex with any edge. How could I do this efficiently with boost::graphs?
The only way I've been able to ...
2
votes
1answer
97 views
Iterate over range, and “one more”
In the algorithm I'm currently implementing, there is this line (where u is a vertex in a graph, and Pred(u) are all vertices having edges pointing at u):
for all s ∈ Pred(u) ∪ {u}
The Pred(u) part ...
2
votes
1answer
165 views
Should I use boost::property_map?
(Apologies for the title, I couldn't come up with a good one shorter than 140 characters...)
I'm writing a graph algorithm for the boost::graph library. Within my algorithm, I need to keep variables, ...
2
votes
1answer
500 views
boost graph library - minimal example of vertex colors and graphviz output
Being new to the boost graph library, I find it's often difficult to tease out what pieces of the examples are tied to the particular example and which parts are universal to usage.
As an exercise, ...
2
votes
1answer
205 views
Output BGL Edge Weights
I am trying to iterate through the edges of a graph and output their edge weights. I am confused though. I know how to output the "edges", but this is actually just a (vertex, vertex) which defines ...
2
votes
2answers
219 views
Stop boost::depth_first_search along a particular depth if certain criteria is met
I'm using BGL to store my DAG. Vertices have states. Given a change in state in one of the vertices i want to update dependent vertices. This i'm able to do using boost::depth_first_search and a ...
2
votes
1answer
427 views
BGL: How do I store edge_descriptors and vertex_descriptors efficiently?
So after my circular dependency problem with the BGL was solved I've come to another obstacle.
I'm currently using an adjacency-list to model my graph. Bundled properties for both nodes and edges are ...
2
votes
1answer
281 views
Using bundled properties as the weight map in dijkstra_shortest_paths
Perhaps this is a stupid question, but I'm trying to use BGL's dijkstra_shortest_paths, and, in particular, to use a field of my Edge bundled property as the weightmap. My attempts have currently led ...
2
votes
3answers
225 views
remove_vertex when the graph VertexList=vecS
I have a Boost Graph with VertexList=vecS.
typedef adjacency_list <listS, vecS, undirectedS, TrackInformation, LinkInformation> TracksConnectionGraph;
Now I want to iterate through my ...
2
votes
3answers
1k views
Boost Graph Library and Visitors
I'm writing a library for manipulating bond graphs, and I'm using the Boost Graph Library to store the data for me. Unfortunately, I can't seem to figure out how to implement a proper visitor pattern ...
1
vote
1answer
35 views
struct defined outside or inside a class template
I have a defined a simple template class. In this class I define a structure (struct NodeData) which is used for nodes of a graph. For the first code I give bellow, there is no compilation error even ...
1
vote
2answers
49 views
Boost Graph Library Polymorphic Bundled Properties
So I'm using a boost graph of the following type:
typedef boost::adjacency_list<boost::listS, boost::vecS, boost:directedS, VertexT, EdgeT> GraphT
VertexT and EdgeT are both classes to keep ...
1
vote
2answers
42 views
Why does BGL A* require the implicit graph to model VertexListGraph?
A more specific follow-up question to my earlier one BGL Interior properties for implicit graph
The Boost BGL has a version of the A* algorithm that is supposed to work with implicit graphs, namely ...
1
vote
1answer
50 views
To compare two boost graph having same vertices
May be it is a novice question, I need your help to compare two graphs, having same number and name of the vertices.
Outline of my theme is:
Graph origG, computedG;
...
...
int nmbrSameEdges, ...
1
vote
1answer
68 views
Boost graphviz custom vertex labels
Currently I have the following code for a project that represents some probability trees and uses custom structs for the vertex and edge types:
#include <boost/graph/adjacency_list.hpp>
...
1
vote
3answers
62 views
Can I wrap boost graph with my own class
I am trying to cerate my own class with boost::adjacency_matrix graph as a member, but I am stuck on compilation error. Sample class that won't compile:
namespace zto {
typedef ...
1
vote
1answer
49 views
how provide a vertex_index property for my graph
Since my graph use setS for vertex, I have to either provide a vertex_index property map for my graph, or give an explicit vertex_id argument to write_graphviz, to be able to use write_graphviz.
My ...
1
vote
1answer
89 views
external properties of boost graph behaving weird?
I am doing my first steps with Boost::Graph and encountered some (to me) unexpected behavior.
What I want is to have a series of edge_weight properties (the number is only known at runtime), and use ...
1
vote
1answer
124 views
Boost Graph Library: Bundled Properties and iterating across edges
Just trying to get my head around the Boost Graph Library and I have a few questions. I'm writing some code which is a wrapper class around a BGL graph. The idea is that I can manipulate the graph ...
1
vote
1answer
55 views
adjacency_list with VertexList diffrent from vecS
IHello,
I have two structs containing some fields: struct MyNodeData, and struct MyEdgeData. When I create a graph with VertexList as vecS, there is no problem to access the descriptor of vertices ...
1
vote
1answer
101 views
Boost Subgraph and Bundled properties
I'm using bundled properties and adjacency_list and would like to use the subgraph class.
struct Vertex
{
int index;
int seed;
};
struct Edge
{
bool visted;
double weight;
};
typedef ...
1
vote
3answers
150 views
Sorting the EdgeList in boost::graph
I would like to to sort the edge List of boost::graph defined as followed:
struct Vertex{
int index;
};
struct Edge{
double weight;
};
boost::adjacency_list<boost::listS, boost::listS, ...
1
vote
1answer
120 views
Copying from grid_graph to adjacency_list with boost::copy_graph
I'm using the boost graph library and trying to initalise a MutableGraph to start life as a grid.
Edges will be added and removed later in life, so I think ...
1
vote
1answer
49 views
edge_index zero for all edges?
Defining my boost::graph like the following, I get edge indices zero for all edges. Why? What am I doing wrong?
#include <iostream>
#include <boost/graph/adjacency_list.hpp>
int main() {
...
1
vote
3answers
175 views
How to efficiently implement graph with a lot of big complete subgraphs? [closed]
I'm currently dealing with a performance issue of graph implementation.
Used technologies
It is programmed in C++. For the moment, the graph is implemented thanks to the BGL.
About the graph
The ...
1
vote
1answer
52 views
Setting edge properties before creating the graph
I'm generating a boost::graph, with some 300k edges. I create the set of edges in a loop, in which I also calculate some properties of the edges. Since I need all edges to create the graph, I don't ...
1
vote
1answer
122 views
Boost force directed layout problem
I am newbie in boost library, I tried to apply force directed layout from the boost documentation website but I encountered the error like this when I try to compile my code:
error: no matching ...
1
vote
1answer
120 views
Why can't I use boost graph write_graphviz with OutEdgeList=listS and VertexList=listS
Why can't I compile the following simple app. If I changes listS to vecS every thing works just fine. (I'am using boost 1.46.1 and gcc 4.4.5)
#include <iostream>
#include ...
1
vote
0answers
500 views
generate random graph with named vertices
I'm new to boost and i am trying to build up a distributed random graph generated by the erdos algorithm. All goes well since i specialize the internal_vertex_name template to work with named vertices ...
1
vote
4answers
257 views
How to solve Boost::BGL template<->class circular dependency?
I have a problem with using the adjacency-list of the Boost Graphics Library. It seems to be a circular dependency problem:
I have a typedef T of a template which uses some class A. Additionally A ...