4 #include <boost/graph/adjacency_list.hpp> 5 #include <boost/graph/subgraph.hpp> 18 Pixel(uint32_t x_, uint32_t y_) : x(x_), y(y_)
36 typedef subgraph<adjacency_list<
40 property<edge_index_t, size_t,
41 property<edge_weight_t, size_t>>
SCIP_Real color
color of the superpixel, i.e. the average color of all pixels contained in it
Definition: graph.h:27
uint32_t x
x coordinate
Definition: graph.h:15
Struct representing a superpixel.
Definition: graph.h:25
std::vector< Pixel > pixels
vector of all pixels contained in the superpixel
Definition: graph.h:28
Struct representing a pixel in the imput image.
Definition: graph.h:13
uint32_t y
y coordinate
Definition: graph.h:16