Image Demosaicking with Contour Stencils
|
Weighted graph edges. More...
Go to the source code of this file.
Data Structures | |
struct | edgestruct |
An edge in a weighted graph. More... | |
struct | edgeliststruct |
A linked-list of edges. More... | |
Typedefs | |
typedef struct edgestruct | edge |
An edge in a weighted graph. More... | |
typedef struct edgeliststruct | edgelist |
A linked-list of edges. More... | |
Functions | |
int | AddEdge (edgelist *List, int x1, int y1, int x2, int y2) |
Add an edge to an edgelist. More... | |
void | FreeEdgeList (edgelist *List) |
Free edges within an edgelist. More... | |
Variables | |
edgelist | NullEdgeList |
An empty edge list. More... | |
Weighted graph edges.
Copyright (c) 2010-2011, Pascal Getreuer All rights reserved.
This program is free software: you can use, modify and/or redistribute it under the terms of the simplified BSD License. You should have received a copy of this license along this program. If not, see http://www.opensource.org/licenses/bsd-license.html.
Definition in file edge.h.
typedef struct edgestruct edge |
An edge in a weighted graph.
typedef struct edgeliststruct edgelist |
A linked-list of edges.
int AddEdge | ( | edgelist * | List, |
int | x1, | ||
int | y1, | ||
int | x2, | ||
int | y2 | ||
) |
void FreeEdgeList | ( | edgelist * | List | ) |