This site is being phased out.

Topology graph

From Mathematics Is A Science
Revision as of 15:03, 9 October 2010 by imported>WikiSysop
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
If you are interested in "topology of graphs", read about cell complexes.


Start with Objects in binary images and Objects in gray scale images.

The topology graph captures the hierarchy of objects in images (i.e., their topology):

  • in binary images: black and white objects;
  • in gray scale images: light and dark objects.

Also, the hierarchy includes that of objects and their holes.

Pixcavator is constructing the topology graph during the first, automatic stage of image analysis. To experiment with the concepts, download the free Pixcavator Student Edition.

Binary images

This hierarchy is based on inclusion (see Inclusion tree) of objects. This is about inclusion of holes in objects and objects located inside holes.

An example is below. As always, dark are labeled with red and light with green.

The first graph may represent both images. BAD! Add an extra arrow. This graph (not tree anymore) represents only the first image.

The construction of the topology graph can - but don't have to - be carried out by means of our algorithm for binary images.

Since the objects - black and white both - never overlap, the topology graph of a binary image is always a tree (it does not have to be connected though).

See also Augmented topology graph below.

Exercise. Draw the topology graph of the "figure eight".

Exercise. Draw the topology graph of the white "figure eight" on the black background.

Topology graphs of the frames of a gray scale image

Topology graph.jpg

As the image is thresholded a sequence of binary images (frames) appears. Each of them is partitioned into connected black and white regions. Each frame has its own topology graph.

The collection of all possible cycles/objects is organized in a graph, the topology graph of the gray scale image. The topology graphs of the frames form a sequence. They are arranged in layers within the graph.

Combined, these graphs form topology graph. Its links reflect merging and splitting of cycles as we move from frame to frame:

The cycles in every frame are related to the cycles in the previous and next frames.

This hierarchy is based on inclusion (see Inclusion tree) of objects.

Within each frame, this is about larger dark/light objects containing smaller light/dark objects.

Between consecutive frames, this is about larger dark/light objects containing smaller dark/light objects.

Generally, the topology graph of a gray scale image isn't a tree, see example below.

Outline:

  • Goal: a graph representation of the topology of a gray scale image.
  • The graph represents the hierarchy of the lower and upper level sets of the gray level function.
  • This graph contains the inclusion trees, but it is not a tree.
  • The topology tools:
    • cell decomposition of images: the image is represented as a combination of pixels as well as edges and vertices.
    • cycles: both upper and lower level sets are captured by circular sequences of edges.

An example

Below we have a gray scale image, its frames, followed by frames with cycles.

The original image: 3 dark objects, one with a hole.
Frame 1.
Frame 2.
Frame 3.
Frame 4.








Frame 1: cycles.
Frame 2: cycles.
Frame 3: cycles.
Frame 4: cycles.








The topology graph of the above image.

Exercise. Suppose there is an extra black pixel located at (a) left upper, (b) right upper, (c) left lower, (d) right lower corner. Modify the above graph to obtain the topology graph of these images.

The structure of the topology graph

A more formal definition.

The nodes of the topology graph are the cycles in the image and there is an arrow from node A to node B if:

  • 0-cycle B has 0-cycle A inside, provided A and B correspond to consecutive gray levels.
  • 0-cycle B has 1-cycle A inside, provided A and B correspond to the same gray level.
  • And vice versa.
A gray scale image.
The topology graph for the image. The objects are: mouth E (black), head B (gray), eyes C and D, entire image A (white).

The arcs in the graph indicate inclusion. Suppose we change the threshold from 0 to 255. Then, any of the minima of the gray scale function will produce a sequence of growing dark objects, up to some threshold. At the same time, any of the maxima will produces a sequence of shrinking light objects, starting at some threshold. There are also three other kinds of topological events, see the binary algorithm (corresponding to similar events while one is adding pixels):

  1. a dark object appears,
  2. dark objects merge,
  3. a dark object forms a hole inside (a light object appears),
  4. a light object splits,
  5. a light object disappears.

Of course, these can happen simultaneously.

One can form the topology graph from the two “inclusion trees” – the one for the dark objects and the other for the light. The latter is turned upside down and attached to the former wherever a topological event #3 happens. The topology graph may be a tree (above), but generally it isn't. Consider, for example, the negative of the image above, below. (The two inclusion trees are the all red and the all green.)

A gray scale image.
The topology graph for the image.

As the threshold grows, new pixels are being added and the cycles in the image appear and disappear. Components merge, holes split, etc. and the topology keeps changing. The information about these changes is recorded in the topology graph. Each node in the graph represents a cycle, and the arcs represent merging and splitting of the cycles.

Exercise. If you "wipe the smile off the face", what will happen to its topology graph?

See also Graph representation of images.

Each layer of the topology graph is the topology graph of the corresponding binary image (obtained via thresholding):

Topology graph subgraph.jpg


The augmented topology graph

Cell decomposition of a single pixel. The edges and vertices may be shared with adjacent pixels.

This partition can (but don't have to) be carried out by means of our algorithm for binary images. It is based on cell decomposition of images. This information is recorded in a graph for each frame, see Adding Pixels.

As a matter of convenience instead of the topology graph we build the augmented topology graph, or simply the augmented graph, of the image (it is in fact what is built by Pixcavator as a part of image analysis). The growing threshold creates a partial order on the set of pixels. In that order the pixels are added to the image. The procedure of building this graph with nodes representing cycles is exactly the same as the one presented in Adding Pixels. During this process the 256 frames will appear but between them there will be auxiliary stages. The frames will generate the principal cycles and the rest are the auxiliary cycles. The graph breaks into layers: auxiliary nodes, principal nodes of the 0th frame, auxiliary nodes, principal nodes of the 1st frame, etc. The topology graph can be extracted from the augmented graph by removing all auxiliary nodes and adding arcs between principal nodes accordingly. Unlike the topology graph, the augmented graph is dependent on the order the pixels (within frames) are added, as well as edges and vertices.

Suppose the image consists of two pixels, black and gray, on white background. Then the construction of the augmented graph starts with adding the black pixel. The graph at this stage is given below. It ends with a single principal cycle, H. The rest are auxiliary.

Next, if the gray pixel isn’t adjacent to the black, the second stage looks exactly the same as the first. It contains a single frame cycle, H’. In this case the augmented graph consists of these two disconnected parts and the topology graph is simply: H, H’.

A graph representation of the 4 stages (9 steps) of adding a stand-alone pixel.
A graph representation of the 6 steps of adding a second pixel.

If the gray pixel is adjacent to the black, the augmented graph is connected. There are 6 steps. Initially only H, the 0-cycle created during the first stage, is present. Then, two new vertices are added creating two new 0-cycles, B’ and C’. Then two edges are added and these three cycles merge. When the third edge is added, a 1-cycle appears. Adding the square removes this cycle. Only one 0-cycle is left, H’ (a two pixel dark object). The topology graph is simply H → H’.

Now, H’ contains H. Therefore only one of them should be counted. Which one? This is for the user to decide. He may be interested in larger objects (H’) or objects with higher contrast from the surroundings (H).

The topology graph should be understood independently from the augmented graph. It can be constructed based entirely on the image and its frames, as in the above example.

Exercise. What if a third pixel is to be added? Consider all the cases.

See next Stages of analysis.


Two dark objects each with a hole.
"Headlights".

Exercise. Draw the topology graph for these images.

For comparison to related methods, see Graph representation of gray scale images.