WO2006056786A1 - Image segmentation - Google Patents

Image segmentation Download PDF

Info

Publication number
WO2006056786A1
WO2006056786A1 PCT/GB2005/004520 GB2005004520W WO2006056786A1 WO 2006056786 A1 WO2006056786 A1 WO 2006056786A1 GB 2005004520 W GB2005004520 W GB 2005004520W WO 2006056786 A1 WO2006056786 A1 WO 2006056786A1
Authority
WO
WIPO (PCT)
Prior art keywords
edge
tree
measure
edges
graph
Prior art date
Application number
PCT/GB2005/004520
Other languages
French (fr)
Inventor
Michael James Knee
Martin Weston
Original Assignee
Snell & Wilcox Limited
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Snell & Wilcox Limited filed Critical Snell & Wilcox Limited
Priority to US11/720,025 priority Critical patent/US7978913B2/en
Priority to DE602005007375T priority patent/DE602005007375D1/en
Priority to EP05808356A priority patent/EP1815421B1/en
Priority to JP2007542115A priority patent/JP4795359B2/en
Publication of WO2006056786A1 publication Critical patent/WO2006056786A1/en

Links

Classifications

    • HELECTRICITY
    • H04ELECTRIC COMMUNICATION TECHNIQUE
    • H04NPICTORIAL COMMUNICATION, e.g. TELEVISION
    • H04N19/00Methods or arrangements for coding, decoding, compressing or decompressing digital video signals
    • H04N19/20Methods or arrangements for coding, decoding, compressing or decompressing digital video signals using video object coding
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T7/00Image analysis
    • G06T7/10Segmentation; Edge detection
    • G06T7/11Region-based segmentation
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F18/00Pattern recognition
    • G06F18/20Analysing
    • G06F18/23Clustering techniques
    • G06F18/232Non-hierarchical techniques
    • G06F18/2323Non-hierarchical techniques based on graph theory, e.g. minimum spanning trees [MST] or graph cuts
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T7/00Image analysis
    • G06T7/10Segmentation; Edge detection
    • G06T7/162Segmentation; Edge detection involving graph-based methods
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T9/00Image coding
    • G06T9/20Contour coding, e.g. using detection of edges
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06VIMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
    • G06V10/00Arrangements for image or video recognition or understanding
    • G06V10/20Image preprocessing
    • G06V10/26Segmentation of patterns in the image field; Cutting or merging of image elements to establish the pattern region, e.g. clustering-based techniques; Detection of occlusion
    • G06V10/267Segmentation of patterns in the image field; Cutting or merging of image elements to establish the pattern region, e.g. clustering-based techniques; Detection of occlusion by performing operations on regions, e.g. growing, shrinking or watersheds
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06VIMAGE OR VIDEO RECOGNITION OR UNDERSTANDING
    • G06V10/00Arrangements for image or video recognition or understanding
    • G06V10/70Arrangements for image or video recognition or understanding using pattern recognition or machine learning
    • G06V10/762Arrangements for image or video recognition or understanding using pattern recognition or machine learning using clustering, e.g. of similar faces in social networks
    • G06V10/7635Arrangements for image or video recognition or understanding using pattern recognition or machine learning using clustering, e.g. of similar faces in social networks based on graphs, e.g. graph cuts or spectral clustering

Definitions

  • This invention relates to image and/or video processing, and in particular to segmentation of image data using graph-theoretic techniques.
  • Segmentation is useful in a number of applications including noise reduction and compression of image and video data, and a wide variety of approaches to image segmentation have previously been proposed.
  • Such proposals include thresholding, the watershed algorithm, morphological scale- space transforms or sieves, region splitting and merging, clustering, frequency-domain techniques and techniques involving motion estimation.
  • few if any of those approaches produce good-quality hierarchical segmentation of multiple-component images using low to moderate processing resources.
  • a graph consists of points (known as vertices) which may be connected together by lines (known as edges).
  • edges An example of a graph is shown in Figure 1.
  • the degree of a vertex is the number of edges adjoining it.
  • the degrees of the vertices range from 0 to 3.
  • a vertex is called a leaf if it has degree 1 ; the graph of Figure 1 has three leaves.
  • edges and vertices can have numbers or weights associated with them. These weights may have some physical significance; for example, in a graph in which the vertices represent towns and the edges roads, the edge weights might represent the lengths of the roads.
  • a subgraph of a graph G is a graph whose vertices are a subset of the vertices of G and whose edges are a subset of the edges of G.
  • a subgraph spans G if it has all the vertices of G.
  • a path in G is a set of distinct edges each of which shares a vertex with the preceding one. For a more precise definition, reference is directed to Bollobas, BeIa. Graph theory - an introductory course. Springer- Verlag, New York, 1979.
  • a tree is a graph in which there is exactly one path from any given vertex to any other.
  • a forest is a disconnected set of trees.
  • a spanning tree or spanning forest of a graph G is a tree or forest that is a spanning subgraph of G.
  • a minimum spanning tree (MST) also known as a shortest or economical spanning tree, of the graph is a spanning tree that minimizes the sum of the edge weights in the tree.
  • MST minimum spanning tree
  • Kruskal's algorithm which maintains a set of partial minimum spanning trees and repeatedly adds the minimum-weight (or lightest) edge whose vertices are in different spanning trees.
  • Vertices of a graph can be used to represent pixels and the edges can be used to represent adjacency of pixels.
  • two pixels are adjacent, and therefore have an edge joining them, if one is directly above, below, to the left or to the right of the other.
  • an image may be represented by a graph as shown in Figure 2.
  • the degree of each vertex not representing a pixel on the image boundary is 4.
  • the word "edge" as used in graph theory has very little to do with the concept of an edge in an image or to the boundary of an image.
  • Edge weights in such a graph may be used to represent some measure of the difference between adjacent pixels.
  • the edge weight may be defined as the absolute difference between the two luminance values.
  • Figure 3 shows an exemplary 5 x 4 luminance image, with pixel values as shown, and Figure 4 shows the graph representing this image in which edge weights equal to the absolute difference between adjacent pixel values have been assigned.
  • the MST can be used as the basis of an image segmentation algorithm. It can be seen that if an edge is removed from a tree, two trees will be formed, each of which in the context of images will describe a connected subset of vertices, i.e. a segment, of the image. So, in order to break an image into N segments, N-1 edges are removed from the MST. It has previously been proposed that the edges selected for removal are simply the N-1 maximum-weight (or heaviest) edges in the MST. For example, in order to break the image represented by Figure 5 into 2 segments, the edge weighted 4 would be removed, producing the segmentation shown in Figure 6.
  • a method of image segmentation in which the pixels of the image are represented by the vertices of a graph, the adjacency of pixels is represented by the edges of the graph, the edges are assigned weights representing a measure of dissimilarity between adjacent pixels, a minimum spanning tree of the graph (or an approximation thereto) is generated, and edges are removed successively from the minimum spanning tree to create a spanning forest, the trees of which correspond to segments of the image, wherein the selection of edges for removal from the spanning forest is dependent on a morphological property of the vertices or edges of the forest.
  • a particular disadvantage identified by the present inventor is that there is often a huge imbalance in the sizes of the segments created by selecting edges using the prior art criteria described above. It has been found that in the prior art process of finding the MST, many of the heaviest edges from the original graph are removed, but the heaviest remaining edges are often to be found near the leaves of the tree. This means that removal of a heavy edge often results in a new segment with only one pixel.
  • the present invention overcomes the limitations of the prior art by using a novel method of selecting which edge to remove from the MST at each stage. The idea behind the invention is to use a measure of the likelihood that the removal of the edge will produce segments of reasonable size.
  • the criterion for selection of an edge depends on a measure of distance from the edge to leaves of the tree in which the edge resides.
  • the criterion can depend on the two trees that would be created by removal of the edge.
  • the criterion can depend on a measure of size, for example using the number of vertices to measure size.
  • the criterion may depend on the difference between a function of the pixels in the tree containing the edge and the sum of the values of the function of the pixels in the two trees that would be created by removal of the edge.
  • MST requires only moderate computing complexity, and performing the subsequent segmentation is very easy. It is possible to specify the number of segments exactly, unlike some algorithms that are threshold-based. Best of all, the algorithm is perfectly hierarchical in that a segmentation into a given number of segments is always contained within a segmentation into more segments.
  • the method also works on multi-component image data (for example, images described by R 1 G 1 B values).
  • the edge weight might be the sum of the absolute or squared differences between the components, the maximum absolute difference, or any other suitable measure.
  • the invention also provides apparatus adapted to carry out methods substantially as herein described, which in one embodiment may comprise a digital circuit.
  • the invention may be embodied in data compression methods and apparatus and other image or video processing applications.
  • Figure 1 is an example of a graph
  • Figure 2 is a representation of a 5x4 image as a graph
  • Figure 3 is an exemplary small luminance image
  • Figure 4 is an edge weighted graph representation of Figure 3;
  • Figure 5 is a minimum spanning tree of Figure 4.
  • Figure 6 is an MST segmentation of Figure 5 into two segments
  • Figure 7 is an MST segmentation of Figure 5 into three segments
  • Figure 8 illustrates successive stages in calculating seclusion
  • Figure 9 is a seclusion map of Figure 5;
  • Figure 10 shows a product of seclusion and edge weights
  • Figure 11 is a segmentation of Figure 5 into two segments using seclusion processing;
  • Figure 12 shows a vertex seclusion map;
  • Figure 13 shows an edge seclusion map
  • Figure 14 shows the product of modified seclusion values and edge weights
  • Figure 15 is a segmentation of Figure 5 into three segments using seclusion processing
  • Figure 16 is an illustrative test image
  • Figure 17 shows the results of an attempted segmentation of Figure 16 into 64 segments using a described prior art algorithm
  • Figure 18 shows the results of segmentation of Figure 16 into 4000 segments using a described prior art algorithm
  • Figure 19 shows the results of segmentation of Figure 16 into 64 segments using an embodiment of the present invention
  • Figure 20 illustrates a simplified seclusion calculation
  • Figure 21 shows the results of segmentation of Figure 16 into 64 segments using an alternative embodiment of the present invention
  • Figure 22 shows a first stage in an exemplary method based on energy calculations
  • Figure 23 shows a second stage in the method based on energy calculations
  • Figure 24 shows a third stage in- the method based on energy calculations
  • Figure 25 shows a fourth stage in the method based on energy calculations.
  • a novel property termed here 'seclusion', can be calculated for every pixel in the image at each stage of the segmentation. Considering that the leaves of a tree are "exposed”, we deem vertices that are in some sense “far” from the leaves to be “secluded”. Seclusion is then the extent to which a vertex is secluded. Seclusion may be calculated for a tree or a forest by the following algorithm:
  • Figure 8 illustrates how the seclusion is calculated for every pixel in the graph of Figure 5. At each stage, leaves that have been removed are coloured white.
  • the seclusion of an edge can be defined in terms of the seclusion of its two vertices, for example, the minimum of the two seclusion values.
  • a seclusion map of the edges of Figure 5 is shown in Figure 9.
  • seclusion values for edges may be calculated directly, using a modified version of the seclusion algorithm described above.
  • Figure 10 shows the product of the original edge weightings and the seclusion map.
  • the edge with a combined value of 18 would be selected, producing the segmentation shown in Figure 11.
  • the seclusion map is re ⁇ calculated for the forest shown in Figure 11.
  • the resulting vertex seclusion map is shown in Figure 12 and the edge seclusion map in Figure 13.
  • Figure 14 shows the product of the new seclusion values and the edge weights.
  • Seclusion may be thought of as a "one-dimensional" measure in that it estimates a distance from an edge or a vertex to the leaves of the tree.
  • a simple modification to the seclusion process may be used to measure the numbers of vertices, i.e. the "areas" of the two trees that would be created by removing an edge. In this modification, the measured quantity is accumulated by adding the quantity associated with leaves that are being removed to the vertices to which the leaves were connected.
  • the recursive process may additionally involve accumulating the edge weights themselves, so that a weighted seclusion value is calculated directly. It would then not be necessary to multiply the seclusion value by an edge weight for selection of an edge for removal, but simply to maximize the weighted measure.
  • Figure 16 shows the luminance component of the "Formal Pond” image from the EBU standard set of test slides, downconverted to 360 x 288 pixels.
  • Figures 17 and 18 show segment boundaries resulting from attempts to segment this image into 64 and 4,000 segments respectively using the prior art MST approach described above, while Figure 19 shows the result of segmentation into 64 segments using the MST approach with seclusion processing as described above.
  • an edge could be added if its weight were deemed to be "small enough" according to some criterion, for example based on a pre-calculated distribution of edge weights, so that it would not be necessary at every stage to search the whole tree to look for a minimum weight of adjoining edges.
  • a simple tree with only two leaves is obtained.
  • the remainder of the process described above simply successively removes the two leaves and increments the current seclusion value.
  • the process is stopped when a simple tree with two leaves is obtained and the current seclusion value is assigned to the rest of the tree.
  • This modification may speed up the seclusion calculations, or at least avoids having to revert to a second method for handling the two-leaved tree.
  • This alternative approach may bring about an improvement in subjective performance in some situations, because it limits what seems to be an over-emphasis on seclusion compared with edge weights in the central region of the tree.
  • a second or alternative quantity or measure may be calculated during removal of the edges of the tree. This second or alternative quantity or measure is the amount by which the removal of an edge reduces some function of the tree.
  • a suitable function would represent the "energy" of the tree.
  • An example of such an energy function is
  • Xi is the value of the luminance at pixel /
  • T is the tree under consideration; and x is the mean value of the luminance in the tree.
  • ⁇ / refers to the number of vertices in the indicated tree.
  • the method by which seclusion is calculated can easily be adapted to calculate this quantity across the tree. This can be done by counting the number of vertices encountered and determining the sum of the pixel values encountered while working inwards from the leaves. This method may be explained in more detail with reference to Figures 22-25.
  • Figures 22-25 are based on the same input data that was used in previous description.
  • the pixel values in this case, luminance values
  • the edges of the minimum spanning tree are shown as lines connecting the vertices.
  • the pixels are considered in a scanning raster sequence, in rows from left to right and from top to bottom of the graph.
  • scanning in the raster sequence leaves of the tree (vertices attached to only one edge) are identified and processed.
  • Vertices that have been dealt with are shown surrounded by a square box in Figure 22.
  • this first stage scanning raster pass results in the calculation of accumulated vertex counts and sums for eight of the 20 vertices of the graph, as shown in Figure 22.
  • the final stage is to go back through all the edges and to apply the formula derived above to obtain an energy value for each edge, based on the accumulated values for the pixel whose processing was responsible for the removal of that edge.
  • the cumulative total of the pixel values for all 20 pixels in the exemplary image is 93, giving a mean value of the luminance in the tree ⁇ ⁇ of
  • edge energy of the third edge from the left on the bottom row of Figure 24 is calculated as follows:
  • the edge for which this energy is maximized is selected. In this example, this would be the edge with an energy of 57.4, and this edge would be removed.
  • the energy measure could also be combined with edge weights, seclusion, or other quantities mentioned previously, to obtain a more complex criterion for edge selection.
  • a segmentation algorithm according to the invention has been described with reference to two-dimensional images. The same approach could be used with image sequences, with an appropriate definition of connectivity between pixels in successive images.

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Physics & Mathematics (AREA)
  • General Physics & Mathematics (AREA)
  • Computer Vision & Pattern Recognition (AREA)
  • Multimedia (AREA)
  • Data Mining & Analysis (AREA)
  • Artificial Intelligence (AREA)
  • Evolutionary Computation (AREA)
  • Databases & Information Systems (AREA)
  • Bioinformatics & Cheminformatics (AREA)
  • Software Systems (AREA)
  • General Health & Medical Sciences (AREA)
  • Computing Systems (AREA)
  • Health & Medical Sciences (AREA)
  • Discrete Mathematics (AREA)
  • Spectroscopy & Molecular Physics (AREA)
  • Life Sciences & Earth Sciences (AREA)
  • Medical Informatics (AREA)
  • Bioinformatics & Computational Biology (AREA)
  • Evolutionary Biology (AREA)
  • General Engineering & Computer Science (AREA)
  • Signal Processing (AREA)
  • Image Analysis (AREA)
  • Image Processing (AREA)
  • Lubrication Of Internal Combustion Engines (AREA)
  • Apparatus For Radiation Diagnosis (AREA)
  • Image Generation (AREA)

Abstract

A method of image segmentation using graph-theory techniques, in which pixels of an image are represented by the vertices of a graph. A minimum spanning tree is generated and edges of the tree are successively removed according to a morphological property to leave a spanning forest, trees of which correspond to segments of the image. Selection of edges for removal may depend on an energy function of a tree and on the energy function of trees created by removal of that edge.

Description

IMAGE SEGMENTATION
This invention relates to image and/or video processing, and in particular to segmentation of image data using graph-theoretic techniques.
Segmentation is useful in a number of applications including noise reduction and compression of image and video data, and a wide variety of approaches to image segmentation have previously been proposed. Such proposals include thresholding, the watershed algorithm, morphological scale- space transforms or sieves, region splitting and merging, clustering, frequency-domain techniques and techniques involving motion estimation. However, few if any of those approaches produce good-quality hierarchical segmentation of multiple-component images using low to moderate processing resources.
The present invention uses several concepts from the branch of mathematics known as graph theory. A brief description of terminology used in graph theory follows. A graph consists of points (known as vertices) which may be connected together by lines (known as edges). An example of a graph is shown in Figure 1.
The degree of a vertex is the number of edges adjoining it. In Figure 1 , the degrees of the vertices range from 0 to 3. A vertex is called a leaf if it has degree 1 ; the graph of Figure 1 has three leaves.
Both edges and vertices can have numbers or weights associated with them. These weights may have some physical significance; for example, in a graph in which the vertices represent towns and the edges roads, the edge weights might represent the lengths of the roads. A subgraph of a graph G is a graph whose vertices are a subset of the vertices of G and whose edges are a subset of the edges of G. A subgraph spans G if it has all the vertices of G. A path in G is a set of distinct edges each of which shares a vertex with the preceding one. For a more precise definition, reference is directed to Bollobas, BeIa. Graph theory - an introductory course. Springer- Verlag, New York, 1979.
A tree is a graph in which there is exactly one path from any given vertex to any other. A forest is a disconnected set of trees. A spanning tree or spanning forest of a graph G is a tree or forest that is a spanning subgraph of G. In an edge-weighted graph, a minimum spanning tree (MST), also known as a shortest or economical spanning tree, of the graph is a spanning tree that minimizes the sum of the edge weights in the tree. Known algorithms exist for finding a minimum spanning tree of an edge-weighted graph. One is Kruskal's algorithm, which maintains a set of partial minimum spanning trees and repeatedly adds the minimum-weight (or lightest) edge whose vertices are in different spanning trees. Another is Prim's algorithm, which begins with a single vertex and builds up the tree by repeatedly adding the lightest edge that joins the tree to a vertex not yet in the tree, the vertex then being added to the tree. In Figures 4 and 5 described in greater detail below, Figure 5 shows a minimum spanning tree of Figure 4.
The application of graph theory to images will now be considered. Vertices of a graph can be used to represent pixels and the edges can be used to represent adjacency of pixels. In this document, two pixels are adjacent, and therefore have an edge joining them, if one is directly above, below, to the left or to the right of the other. This is the 4-connected definition of adjacency; a 6-connected or 8-connected definition may also be used. With the 4-connected definition, an image may be represented by a graph as shown in Figure 2. The degree of each vertex not representing a pixel on the image boundary is 4. Note that the word "edge" as used in graph theory has very little to do with the concept of an edge in an image or to the boundary of an image.
Edge weights in such a graph may be used to represent some measure of the difference between adjacent pixels. For example, in a luminance image, the edge weight may be defined as the absolute difference between the two luminance values.
Figure 3 shows an exemplary 5 x 4 luminance image, with pixel values as shown, and Figure 4 shows the graph representing this image in which edge weights equal to the absolute difference between adjacent pixel values have been assigned.
The MST can be used as the basis of an image segmentation algorithm. It can be seen that if an edge is removed from a tree, two trees will be formed, each of which in the context of images will describe a connected subset of vertices, i.e. a segment, of the image. So, in order to break an image into N segments, N-1 edges are removed from the MST. It has previously been proposed that the edges selected for removal are simply the N-1 maximum-weight (or heaviest) edges in the MST. For example, in order to break the image represented by Figure 5 into 2 segments, the edge weighted 4 would be removed, producing the segmentation shown in Figure 6.
If 3 segments were required, the second heaviest edge (weighted 3) would also be removed; producing the segmentation shown in Figure 7.
However, this method has been found to suffer from a number of disadvantages.
It is an object of the present invention to provide an improved method of image segmentation.
According to the first aspect of the present invention there is provided a method of image segmentation, in which the pixels of the image are represented by the vertices of a graph, the adjacency of pixels is represented by the edges of the graph, the edges are assigned weights representing a measure of dissimilarity between adjacent pixels, a minimum spanning tree of the graph (or an approximation thereto) is generated, and edges are removed successively from the minimum spanning tree to create a spanning forest, the trees of which correspond to segments of the image, wherein the selection of edges for removal from the spanning forest is dependent on a morphological property of the vertices or edges of the forest.
A particular disadvantage identified by the present inventor is that there is often a huge imbalance in the sizes of the segments created by selecting edges using the prior art criteria described above. It has been found that in the prior art process of finding the MST, many of the heaviest edges from the original graph are removed, but the heaviest remaining edges are often to be found near the leaves of the tree. This means that removal of a heavy edge often results in a new segment with only one pixel. The present invention overcomes the limitations of the prior art by using a novel method of selecting which edge to remove from the MST at each stage. The idea behind the invention is to use a measure of the likelihood that the removal of the edge will produce segments of reasonable size. Preferably the criterion for selection of an edge depends on a measure of distance from the edge to leaves of the tree in which the edge resides. Alternatively the criterion can depend on the two trees that would be created by removal of the edge. In one embodiment the criterion can depend on a measure of size, for example using the number of vertices to measure size. In another embodiment the criterion may depend on the the difference between a function of the pixels in the tree containing the edge and the sum of the values of the function of the pixels in the two trees that would be created by removal of the edge. This novel algorithm has some very attractive features. Finding an
MST requires only moderate computing complexity, and performing the subsequent segmentation is very easy. It is possible to specify the number of segments exactly, unlike some algorithms that are threshold-based. Best of all, the algorithm is perfectly hierarchical in that a segmentation into a given number of segments is always contained within a segmentation into more segments. The method also works on multi-component image data (for example, images described by R1G1B values). In an image described by more than one component, for example an RGB image, the edge weight might be the sum of the absolute or squared differences between the components, the maximum absolute difference, or any other suitable measure.
The invention also provides apparatus adapted to carry out methods substantially as herein described, which in one embodiment may comprise a digital circuit. The invention may be embodied in data compression methods and apparatus and other image or video processing applications. The invention will now be described by way of example only, with reference to the accompanying figures in which:
Figure 1 is an example of a graph;
Figure 2 is a representation of a 5x4 image as a graph;
Figure 3 is an exemplary small luminance image; Figure 4 is an edge weighted graph representation of Figure 3;
Figure 5 is a minimum spanning tree of Figure 4;
Figure 6 is an MST segmentation of Figure 5 into two segments;
Figure 7 is an MST segmentation of Figure 5 into three segments;
Figure 8 illustrates successive stages in calculating seclusion; Figure 9 is a seclusion map of Figure 5;
Figure 10 shows a product of seclusion and edge weights;
Figure 11 is a segmentation of Figure 5 into two segments using seclusion processing; Figure 12 shows a vertex seclusion map;
Figure 13 shows an edge seclusion map;
Figure 14 shows the product of modified seclusion values and edge weights;
Figure 15 is a segmentation of Figure 5 into three segments using seclusion processing;
Figure 16 is an illustrative test image;
Figure 17 shows the results of an attempted segmentation of Figure 16 into 64 segments using a described prior art algorithm;
Figure 18 shows the results of segmentation of Figure 16 into 4000 segments using a described prior art algorithm;
Figure 19 shows the results of segmentation of Figure 16 into 64 segments using an embodiment of the present invention;
Figure 20 illustrates a simplified seclusion calculation;
Figure 21 shows the results of segmentation of Figure 16 into 64 segments using an alternative embodiment of the present invention;
Figure 22 shows a first stage in an exemplary method based on energy calculations;
Figure 23 shows a second stage in the method based on energy calculations; Figure 24 shows a third stage in- the method based on energy calculations; and
Figure 25 shows a fourth stage in the method based on energy calculations.
A novel property, termed here 'seclusion', can be calculated for every pixel in the image at each stage of the segmentation. Considering that the leaves of a tree are "exposed", we deem vertices that are in some sense "far" from the leaves to be "secluded". Seclusion is then the extent to which a vertex is secluded. Seclusion may be calculated for a tree or a forest by the following algorithm:
• Set current seclusion value S to 0
• While there are edges remaining in the forest: o Increment S o Set seclusion of all leaf vertices to S o Remove all leaf vertices and the edges adjoining them
• If one vertex remains, set its seclusion to S+1
Figure 8 illustrates how the seclusion is calculated for every pixel in the graph of Figure 5. At each stage, leaves that have been removed are coloured white.
We have described how to calculate the seclusion of all the vertices in a tree or forest. The seclusion of an edge can be defined in terms of the seclusion of its two vertices, for example, the minimum of the two seclusion values. A seclusion map of the edges of Figure 5 is shown in Figure 9.
Alternatively, seclusion values for edges may be calculated directly, using a modified version of the seclusion algorithm described above.
To select an edge for removal, the original edge weightings and the edge seclusion values are combined, for example by multiplication. Figure 10 shows the product of the original edge weightings and the seclusion map.
To segment the image into 2 segments, the edge with a combined value of 18 would be selected, producing the segmentation shown in Figure 11. In order to continue the segmentation process, the seclusion map is re¬ calculated for the forest shown in Figure 11. The resulting vertex seclusion map is shown in Figure 12 and the edge seclusion map in Figure 13. Figure 14 shows the product of the new seclusion values and the edge weights.
As often happens when integer processing is being used, there is now an ambiguity about the selection of the next highest edge value. If we weight a dead-heat in favour of higher seclusion, we would choose the left-hand of the two edges valued 8, and we would obtain the segmentation shown in
Figure 15.
The above examples illustrate how a seclusion map may be used to help ensure that MST segmentation avoids producing very small segments at early stages in the process. There is of course a trade-off between the importance attached to seclusion and the importance of cutting the forest at a heavy edge. This trade-off can be reflected in the choice of function by which seclusion and edge weighting are combined. Seclusion may be thought of as a "one-dimensional" measure in that it estimates a distance from an edge or a vertex to the leaves of the tree. A simple modification to the seclusion process may be used to measure the numbers of vertices, i.e. the "areas" of the two trees that would be created by removing an edge. In this modification, the measured quantity is accumulated by adding the quantity associated with leaves that are being removed to the vertices to which the leaves were connected.
In either the seclusion measure or the modified measure described above, the recursive process may additionally involve accumulating the edge weights themselves, so that a weighted seclusion value is calculated directly. It would then not be necessary to multiply the seclusion value by an edge weight for selection of an edge for removal, but simply to maximize the weighted measure.
An illustration of the benefits of seclusion processing in segmenting real images will now be given. Figure 16 shows the luminance component of the "Formal Pond" image from the EBU standard set of test slides, downconverted to 360 x 288 pixels. Figures 17 and 18 show segment boundaries resulting from attempts to segment this image into 64 and 4,000 segments respectively using the prior art MST approach described above, while Figure 19 shows the result of segmentation into 64 segments using the MST approach with seclusion processing as described above.
It is not necessary to calculate the seclusion map exactly. For example, a good approximation to a seclusion map may be obtained by removing leaves from the forest "in-place" as the processing follows a raster scanning pattern. This shortened process is illustrated in Figure 20. This simplification is asymmetrical and is necessarily imperfect, but in certain embodiments has little effect on the overall performance of the algorithm. For example, Figure 21 shows the effect of the simplification on the segmentation into 64 regions of "Formal Pond" for comparison with the "correct" seclusion processing used in Figure 19. A similar simplification may be used for the modified versions of the seclusion measure described earlier.
It may also be possible to reduce processing time by finding an approximation to the MST. For example, during the operation of Prim's algorithm, an edge could be added if its weight were deemed to be "small enough" according to some criterion, for example based on a pre-calculated distribution of edge weights, so that it would not be necessary at every stage to search the whole tree to look for a minimum weight of adjoining edges.
A further improvement to the invention will now be described. At a given stage in the segmentation process, the use of a combination of the seclusion value and the edge weighting has been used to decide which edge to remove from the forest. This decision can be thought of as having two parts: deciding which tree in the forest to remove an edge from, and deciding which edge to remove from that tree. In a preferred embodiment of the invention, other readily measurable properties of the trees could be used to make the first part of the decision, and then the method of the invention itself could be used to make the second part of the decision. For example, the tree with the highest total or average edge weight could be selected, or the tree with the most vertices, or some other measure or combination of measures could be taken. Such an embodiment has two benefits. The first benefit is that additional information can be taken into account when deciding which tree to split. The second benefit is that seclusion values need only be calculated for the selected tree.
It has been observed that typically partway through the process of calculating seclusion as described above, a simple tree with only two leaves is obtained. The remainder of the process described above simply successively removes the two leaves and increments the current seclusion value. In one embodiment, instead, the process is stopped when a simple tree with two leaves is obtained and the current seclusion value is assigned to the rest of the tree. This modification may speed up the seclusion calculations, or at least avoids having to revert to a second method for handling the two-leaved tree. This alternative approach may bring about an improvement in subjective performance in some situations, because it limits what seems to be an over-emphasis on seclusion compared with edge weights in the central region of the tree. In a further embodiment, a second or alternative quantity or measure may be calculated during removal of the edges of the tree. This second or alternative quantity or measure is the amount by which the removal of an edge reduces some function of the tree.
If the function on a tree T is defined as f(T), and removal of an edge e splits a tree T into two trees U and V, then the amount by which removal of the edge reduces the function may be given by the expression:
f (T)- f (U)- f (V)
A suitable function would represent the "energy" of the tree. An example of such an energy function is
Figure imgf000010_0001
where
Xi is the value of the luminance at pixel /;
T is the tree under consideration; and x is the mean value of the luminance in the tree. Using the above definitions, the reduction in energy according to the above formula (which can be thought of as the "energy of the edge e") can be written as
E = /(T)- /(U)- /(V) = E1 -En -E JV1
Figure imgf000011_0001
fc -%)2 fe -*v)
Figure imgf000011_0002
) ~ / ΛX; ~ *'
Figure imgf000011_0003
where Λ/ refers to the number of vertices in the indicated tree.
The method by which seclusion is calculated can easily be adapted to calculate this quantity across the tree. This can be done by counting the number of vertices encountered and determining the sum of the pixel values encountered while working inwards from the leaves. This method may be explained in more detail with reference to Figures 22-25. Figures 22-25 are based on the same input data that was used in previous description. In these Figures, the pixel values (in this case, luminance values) are shown inside the circles corresponding to each pixel, or vertex of the graph. The edges of the minimum spanning tree are shown as lines connecting the vertices.
In the illustrative embodiment, the pixels are considered in a scanning raster sequence, in rows from left to right and from top to bottom of the graph. Thus, scanning in the raster sequence, leaves of the tree (vertices attached to only one edge) are identified and processed. At each stage the number n of vertices encountered and an accumulated sum s of luminance values of those vertices are recorded. At the leaves of the tree, n = 1 and s is the pixel value. Vertices that have been dealt with are shown surrounded by a square box in Figure 22.
Once a vertex has been processed, the corresponding edge is removed from the tree. Thus leaves that have been newly created during the scanning raster pass may be encountered later in the same scanning raster pass and can also be processed as is the case at the top left of the graph. So this first stage scanning raster pass results in the calculation of accumulated vertex counts and sums for eight of the 20 vertices of the graph, as shown in Figure 22.
In Figure 23, edges that were removed during the first stage are now shown as dotted lines. New leaves are revealed and, once again, several vertices can be dealt with in one pass because of the raster scanning pattern.
In Figure 24, only two leaves of the tree remain and these are both removed. A single isolated pixel (with value 8) remains and there is no need to process this because all the edges have been removed from the graph. Note that there is no guarantee that three passes are sufficient to remove all edges from a graph of this size.
The final stage is to go back through all the edges and to apply the formula derived above to obtain an energy value for each edge, based on the accumulated values for the pixel whose processing was responsible for the removal of that edge. The cumulative total of the pixel values for all 20 pixels in the exemplary image is 93, giving a mean value of the luminance in the tree χτ of
4.65. Thus for example, the edge energy of the third edge from the left on the bottom row of Figure 24 is calculated as follows:
Nu = 10
Xy = s I Nu = 30/10 = 3 χτ = 4.65 giving an edge energy of 54.5 in accordance with the above formula.
The respective energy values for all edges are shown in Figure 25.
When selecting an edge for removal using this method, the edge for which this energy is maximized is selected. In this example, this would be the edge with an energy of 57.4, and this edge would be removed.
The energy measure could also be combined with edge weights, seclusion, or other quantities mentioned previously, to obtain a more complex criterion for edge selection.
A segmentation algorithm according to the invention has been described with reference to two-dimensional images. The same approach could be used with image sequences, with an appropriate definition of connectivity between pixels in successive images.

Claims

1. A method of image segmentation, in which the pixels of the image are represented by the vertices of a graph, the adjacency of pixels is represented by the edges of the graph, the edges are assigned weights representing a measure of-dissimilarity between adjacent pixels, a minimum spanning tree of the graph (or an approximation thereto) is generated, and edges are removed successively from the minimum spanning tree to create a spanning forest, the trees of which correspond to segments of the image, wherein the selection of edges for removal from the spanning forest is dependent on a morphological property calculated over the vertices or edges of the forest.
2. A method according to Claim 1 , in which a measure for selection of an edge depends on a measure of distance from the edge to leaves of the tree in which the edge resides.
3. A method according to Claim 1, in which a measure for selection of an edge depends on a measure of the two trees that would be created by removal of the edge.
4. A method according to claim 3 in which the measure for an edge is the difference between a function of the pixels in the tree containing the edge and the sum of the values of the function of the pixels in the two trees that would be created by removal of the edge.
5. A method according to claim 4, in which the function is an energy function.
6. A method according to claim 5, in which the energy value of pixels in a tree is related to the square of the difference between the pixel values of pixels in the tree and the mean pixel value of the tree.
7. The method according to claim 3, in which the measure for selection of an edge depends on a measure of size of the two trees that would be created by removal of the edge
8. A method according to Claim 7, wherein size is measured as the number of vertices forming a tree.
9. A method according to any preceding claim in which the measure for each edge in a tree is calculated by a recursive algorithm.
10. A method according to Claim 9, in which the measure is set to an initial value for a first set of edges adjoining leaves of the tree, wherein the measure is incremented or accumulated for a subsequent set of edges adjoining said first set of edges and wherein the process is repeated until all edges have been considered.
11. A method according to Claim 9 or Claim 10, in which the measure is set to an initial value for edges adjoining leaves of the tree, those edges are temporarily removed, the measure is incremented or accumulated and the process repeated until no edges remain.
12. A method according to any claim 11 in which edge weights are included in the accumulation process.
13. A method according to Claim 11 or 12, in which the accumulation of the measure is halted when two leaves remain in the tree and the measure is set to a constant value for the remainder of the tree.
14. A method according to Claim 2, in which the measure is calculated using an algorithm giving substantially similar results to the algorithm of any one of Claims 9 to 13.
15. A method according to any preceding claim, in which the measure for selection of an edge depends on the pixel values of the graph.
16. A method according to any preceding claim, in which the process of vertex or edge removal is carried out in a predetermined scanning order over the vertices or edges in the graph.
17. A method-aecording-to Glaim-16τ wherein said scanning order is a raster pattern.
18. A method according to any preceding claim, in which the measure for selection of an edge depends on the edge weights of the graph.
19. A method according to Claim 18, in which the chosen edge maximizes the product of the edge weights and the measure derived in any one of Claims 2 to 15.
20. A method according to any preceding claim, in which the selection of an edge is preceded by selection of a tree from which to remove that edge.
21. A method according to Claim 20, in which the measure for selection of a tree depends on a combination of any or all of the following properties: the vertex count of the tree, the average edge weight of the tree, the total edge weight of the tree, a function of the pixel values and edge weights of the tree.
22. A method of image segmentation, in which the pixels of the image are represented by the vertices of a graph, the adjacency of pixels is represented by the edges of the graph, the edges are assigned weights representing a measure of dissimilarity between adjacent pixels, a minimum spanning tree of the graph (or an approximation thereto) is generated, and edges are removed successively from the minimum spanning tree to create a spanning forest, the trees of which correspond to segments of the image, wherein the selection of edges for removal from the spanning forest is dependent on a measure of the two trees that would be created by removal of an edge
PCT/GB2005/004520 2004-11-26 2005-11-25 Image segmentation WO2006056786A1 (en)

Priority Applications (4)

Application Number Priority Date Filing Date Title
US11/720,025 US7978913B2 (en) 2004-11-26 2005-11-25 Image segmentation based on processing of a graph
DE602005007375T DE602005007375D1 (en) 2004-11-26 2005-11-25 IMAGE SEGMENTATION
EP05808356A EP1815421B1 (en) 2004-11-26 2005-11-25 Image segmentation
JP2007542115A JP4795359B2 (en) 2004-11-26 2005-11-25 Image segmentation

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
GB0426038A GB2420669A (en) 2004-11-26 2004-11-26 Image segmentation
GB0426038.6 2004-11-26

Publications (1)

Publication Number Publication Date
WO2006056786A1 true WO2006056786A1 (en) 2006-06-01

Family

ID=33561422

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/GB2005/004520 WO2006056786A1 (en) 2004-11-26 2005-11-25 Image segmentation

Country Status (8)

Country Link
US (1) US7978913B2 (en)
EP (1) EP1815421B1 (en)
JP (1) JP4795359B2 (en)
CN (1) CN101065774A (en)
AT (1) ATE397772T1 (en)
DE (1) DE602005007375D1 (en)
GB (1) GB2420669A (en)
WO (1) WO2006056786A1 (en)

Cited By (5)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2009062781A1 (en) * 2007-11-14 2009-05-22 Robert Bosch Gmbh Self adjustment of scanning electron microscopes
CN102254067A (en) * 2011-07-05 2011-11-23 重庆大学 Large-scale grouping optimizing method of parts based on feed characteristic
US8472798B2 (en) 2010-10-28 2013-06-25 Axis Ab Method for focusing
CN105809703A (en) * 2016-03-30 2016-07-27 福州大学 Adhesion hemocyte image segmentation method based on improved fractional differential and graph theory
JPWO2020045132A1 (en) * 2018-08-30 2021-08-10 富士フイルム株式会社 Topical gel composition and how to use it

Families Citing this family (13)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US7995137B2 (en) * 2006-05-01 2011-08-09 Himax Technologies, Limited Exposure compensation method for digital image
US8526723B2 (en) * 2009-06-23 2013-09-03 Los Alamos National Security, Llc System and method for the detection of anomalies in an image
US8949092B2 (en) 2009-10-15 2015-02-03 Thomson Licensing Method and apparatus for encoding a mesh model, encoded mesh model, and method and apparatus for decoding a mesh model
JP5772446B2 (en) * 2010-09-29 2015-09-02 株式会社ニコン Image processing apparatus and image processing program
CN102096816B (en) * 2011-01-28 2012-12-26 武汉大学 Multi-scale multi-level image segmentation method based on minimum spanning tree
CN102103744A (en) * 2011-01-28 2011-06-22 武汉大学 Image segmentation method based on minimum spanning trees and statistical learning theory
US20150071541A1 (en) * 2013-08-14 2015-03-12 Rice University Automated method for measuring, classifying, and matching the dynamics and information passing of single objects within one or more images
KR101760287B1 (en) * 2016-02-05 2017-07-25 한국광기술원 Device and method for medical image segmentation
CN108182436B (en) * 2017-12-29 2021-12-07 辽宁工程技术大学 High-resolution remote sensing image segmentation method
CN109190088A (en) * 2018-08-07 2019-01-11 北华大学 A kind of statistical method of the top adaptive value of forest community successional tree species
US11132513B2 (en) * 2019-05-07 2021-09-28 International Business Machines Corporation Attention-based natural language processing
US11176333B2 (en) 2019-05-07 2021-11-16 International Business Machines Corporation Generation of sentence representation
CN111583266B (en) * 2020-05-08 2021-09-24 清华大学 Self-adaptive synthetic aperture radar image super-pixel segmentation method based on Fermat vector

Family Cites Families (8)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
GB8827556D0 (en) * 1988-11-25 1988-12-29 Crosfield Electronics Ltd Data compression
KR100381958B1 (en) 2000-10-30 2003-04-26 삼성전자주식회사 Ferroelectric ram device
ATE421735T1 (en) 2002-11-22 2009-02-15 Oce Tech Bv SEGMENTATION OF AN IMAGE USING SHORTEST CYCLES
US7127104B2 (en) * 2004-07-07 2006-10-24 The Regents Of The University Of California Vectorized image segmentation via trixel agglomeration
US7542604B2 (en) * 2004-08-26 2009-06-02 Siemens Medical Solutions Usa, Inc. System and method for image segmentation by solving an inhomogenous dirichlet problem
US7630548B2 (en) * 2004-09-22 2009-12-08 Siemens Medical Solutions Usa, Inc. Image segmentation using isoperimetric trees
US7724256B2 (en) * 2005-03-21 2010-05-25 Siemens Medical Solutions Usa, Inc. Fast graph cuts: a weak shape assumption provides a fast exact method for graph cuts segmentation
US7995810B2 (en) * 2005-06-24 2011-08-09 The University Of Iowa Research Foundation System and methods for image segmentation in n-dimensional space

Non-Patent Citations (6)

* Cited by examiner, † Cited by third party
Title
AHMED H ET AL: "A novel graph-theoretic texture segmentation algorithm", SPEECH PROCESSING 2, VLSI, UNDERWATER SIGNAL PROCESSING. TORONTO, MAY 14 - 17, 1991, INTERNATIONAL CONFERENCE ON ACOUSTICS, SPEECH & SIGNAL PROCESSING. ICASSP, NEW YORK, IEEE, US, vol. VOL. 2 CONF. 16, 14 April 1991 (1991-04-14), pages 2709 - 2712, XP010043565, ISBN: 0-7803-0003-3 *
DASKALAKIS T N ET AL EUROPEAN ASSOCIATION FOR SIGNAL PROCESSING (EURASIP): "A GRAPH-THEORETIC ALGORITHM FOR UNSUPERVISED IMAGE SEGMENTATION", SIGNAL PROCESSING : THEORIES AND APPLICATIONS. GRENOBLE, SEPT. 5 - 8, 1988, PROCEEDINGS OF THE EUROPEAN SIGNAL PROCESSING CONFERENCE (EUSIPCO), AMSTERDAM, NORTH HOLLAND, NL, vol. VOL. 3 CONF. 4, 5 September 1988 (1988-09-05), pages 1621 - 1624, XP000093875 *
FELZENSZWALB P F ET AL: "Image segmentation using local variation", COMPUTER VISION AND PATTERN RECOGNITION, 1998. PROCEEDINGS. 1998 IEEE COMPUTER SOCIETY CONFERENCE ON SANTA BARBARA, CA, USA 23-25 JUNE 1998, LOS ALAMITOS, CA, USA,IEEE COMPUT. SOC, US, 23 June 1998 (1998-06-23), pages 98 - 104, XP010291606, ISBN: 0-8186-8497-6 *
MORRIS O J ET AL: "A UNIFIED METHOD FOR SEGMENTATION AND EDGE DETECTION USING GRAPH THEORY", INTERNATIONAL CONFERENCE ON ACOUSTICS, SPEECH & SIGNAL PROCESSING. ICASSP. TOKYO, APRIL 7 - 11, 1986, NEW YORK, IEEE, US, vol. VOL. 3 CONF. 11, 7 April 1986 (1986-04-07), pages 2051 - 2054, XP001109179 *
SCANLON J ET AL: "Graph-theoretic algorithms for image segmentation", CIRCUITS AND SYSTEMS, 1999. ISCAS '99. PROCEEDINGS OF THE 1999 IEEE INTERNATIONAL SYMPOSIUM ON ORLANDO, FL, USA 30 MAY-2 JUNE 1999, PISCATAWAY, NJ, USA,IEEE, US, vol. 6, 30 May 1999 (1999-05-30), pages 141 - 144, XP010341603, ISBN: 0-7803-5471-0 *
ZAHN C T: "GRAPH-THEORETICAL METHODS FOR DETECTING AND DESCRIBING GESTALT CLUSTERS", IEEE TRANSACTIONS ON COMPUTERS, IEEE SERVICE CENTER, LOS ALAMITOS, CA, US, vol. C-20, no. 1, January 1971 (1971-01-01), pages 68 - 86, XP001189491, ISSN: 0018-9340 *

Cited By (7)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2009062781A1 (en) * 2007-11-14 2009-05-22 Robert Bosch Gmbh Self adjustment of scanning electron microscopes
US8472798B2 (en) 2010-10-28 2013-06-25 Axis Ab Method for focusing
CN102254067A (en) * 2011-07-05 2011-11-23 重庆大学 Large-scale grouping optimizing method of parts based on feed characteristic
CN105809703A (en) * 2016-03-30 2016-07-27 福州大学 Adhesion hemocyte image segmentation method based on improved fractional differential and graph theory
CN105809703B (en) * 2016-03-30 2018-10-30 福州大学 Adhesion blood cell image dividing method based on improved fractional order differential and graph theory
JPWO2020045132A1 (en) * 2018-08-30 2021-08-10 富士フイルム株式会社 Topical gel composition and how to use it
JP7045467B2 (en) 2018-08-30 2022-03-31 富士フイルム株式会社 External gel composition and its usage

Also Published As

Publication number Publication date
GB2420669A (en) 2006-05-31
CN101065774A (en) 2007-10-31
DE602005007375D1 (en) 2008-07-17
EP1815421B1 (en) 2008-06-04
JP2008522273A (en) 2008-06-26
GB0426038D0 (en) 2004-12-29
US7978913B2 (en) 2011-07-12
EP1815421A1 (en) 2007-08-08
JP4795359B2 (en) 2011-10-19
US20080037870A1 (en) 2008-02-14
ATE397772T1 (en) 2008-06-15

Similar Documents

Publication Publication Date Title
EP1815421B1 (en) Image segmentation
Wang et al. An iterative optimization approach for unified image segmentation and matting
US9147252B2 (en) Method for partitioning a pattern into optimized sub-patterns
Arefi et al. A morphological reconstruction algorithm for separating off-terrain points from terrain points in laser scanning data
JP2002170117A (en) Method and apparatus for measuring color-texture distance and method and apparatus for dividing image into domains using them
Marcotegui et al. Fast implementation of waterfall based on graphs
CN107833224B (en) A kind of image partition method based on the synthesis of multilayer sub-region
WO2019197021A1 (en) Device and method for instance-level segmentation of an image
Stoev et al. Extracting regions of interest applying a local watershed transformation
CN110310263B (en) SAR image residential area detection method based on significance analysis and background prior
Malladi et al. Superpixels using morphology for rock image segmentation
Lersch et al. Segmentation of multiband imagery using minimum spanning trees
Partio et al. An ordinal co-occurrence matrix framework for texture retrieval
Rashwan et al. Fuzzy watershed segmentation algorithm: an enhanced algorithm for 2D gel electrophoresis image segmentation
Luengo et al. SMURFS: superpixels from multi-scale refinement of super-regions
Zaravi et al. Journals subheadlines text extraction using wavelet thresholding and new projection profile
CN103578096A (en) Image segmentation algorithm
Weber et al. Spatio-temporal quasi-flat zones for morphological video segmentation
Montero et al. A divide-and-conquer clustering approach based on optimum-path forest
Soor et al. Segmentation of Multi-Band Images Using Watershed Arcs
KR102556777B1 (en) Efficient image restoration method and device based k-NN search
Vanhamel et al. Nonlinear multiscale graph theory based segmentation of color images
Meyer The waterfall hierarchy on weighted graphs
Semwal et al. Copy move image forgery detection using machine learning
Ito et al. Interactive region segmentation for manga

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AE AG AL AM AT AU AZ BA BB BG BR BW BY BZ CA CH CN CO CR CU CZ DE DK DM DZ EC EE EG ES FI GB GD GE GH GM HR HU ID IL IN IS JP KE KG KM KN KP KR KZ LC LK LR LS LT LU LV LY MA MD MG MK MN MW MX MZ NA NG NI NO NZ OM PG PH PL PT RO RU SC SD SE SG SK SL SM SY TJ TM TN TR TT TZ UA UG US UZ VC VN YU ZA ZM ZW

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): BW GH GM KE LS MW MZ NA SD SL SZ TZ UG ZM ZW AM AZ BY KG KZ MD RU TJ TM AT BE BG CH CY CZ DE DK EE ES FI FR GB GR HU IE IS IT LT LU LV MC NL PL PT RO SE SI SK TR BF BJ CF CG CI CM GA GN GQ GW ML MR NE SN TD TG

121 Ep: the epo has been informed by wipo that ep was designated in this application
WWE Wipo information: entry into national phase

Ref document number: 2005808356

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 2007542115

Country of ref document: JP

WWE Wipo information: entry into national phase

Ref document number: 200580040569.X

Country of ref document: CN

NENP Non-entry into the national phase

Ref country code: DE

WWP Wipo information: published in national office

Ref document number: 2005808356

Country of ref document: EP

WWE Wipo information: entry into national phase

Ref document number: 11720025

Country of ref document: US

WWP Wipo information: published in national office

Ref document number: 11720025

Country of ref document: US

WWG Wipo information: grant in national office

Ref document number: 2005808356

Country of ref document: EP