Image Segmentation
Image Segmentation
1 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Image segmentation
Contents
1
2
3
4
5
6
7
8
9
Applications
Thresholding
Clustering methods
Compression-based methods
Histogram-based methods
Edge detection
Dual clustering method
Region-growing methods
Partial differential equation-based methods
9.1 Parametric methods
9.2 Level set methods
9.3 Fast marching methods
10 Variational methods
11 Graph partitioning methods
11.1 Markov Random Fields
11.1.1 Supervised Image Segmentation using MRF
and MAP
11.1.2 Optimization algorithms
11.1.2.1 Iterated Conditional Modes/Gradient
Descent
4/18/2016 1:47 PM
2 of 18
12
13
14
15
16
17
18
19
20
21
22
https://en.wikipedia.org/wiki/Image_segmentation
Applications
Some of the practical applications of image segmentation are:
3 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Several general-purpose algorithms and techniques have been developed for image segmentation. To be useful,
these techniques must typically be combined with a domain's specific knowledge in order to effectively solve
the domain's segmentation problems.
Thresholding
The simplest method of image segmentation is called the thresholding method. This method is based on a
clip-level (or a threshold value) to turn a gray-scale image into a binary image. There is also a balanced
histogram thresholding.
The key of this method is to select the threshold value (or values when multiple-levels are selected). Several
popular methods are used in industry including the maximum entropy method, Otsu's method (maximum
variance), and k-means clustering.
Recently, methods have been developed for thresholding computed tomography (CT) images. The key idea is
that, unlike Otsu's method, the thresholds are derived from the radiographs instead of the (reconstructed)
image[8] .[9]
New methods suggested the usage of multi-dimensional fuzzy rule-based non-linear thresholds. In these works
decision over each pixel's membership to a segment is based on multi-dimensional rules derived from fuzzy
logic and evolutionary algorithms based on image lighting environment and application.[10]
Clustering methods
The K-means algorithm is an iterative technique that is used to partition an image into K clusters.[11] The basic
algorithm is
In this case, distance is the squared or absolute difference between a pixel and a cluster center. The difference is
typically based on pixel color, intensity, texture, and location, or a weighted combination of these factors. K can
be selected manually, randomly, or by a heuristic. This algorithm is guaranteed to converge, but it may not
return the optimal solution. The quality of the solution depends on the initial set of clusters and the value of K.
Compression-based methods
Compression based methods postulate that the optimal segmentation is the one that minimizes, over all possible
segmentations, the coding length of the data.[12][13] The connection between these two concepts is that
segmentation tries to find patterns in an image and any regularity in the image can be used to compress it. The
method describes each segment by its texture and boundary shape. Each of these components is modeled by a
probability distribution function and its coding length is computed as follows:
1. The boundary encoding leverages the fact that regions in natural images tend to have a smooth contour.
This prior is used by Huffman coding to encode the difference chain code of the contours in an image.
4/18/2016 1:47 PM
4 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Source image.
Histogram-based methods
Histogram-based methods are very efficient compared to other image segmentation methods because they
typically require only one pass through the pixels. In this technique, a histogram is computed from all of the
pixels in the image, and the peaks and valleys in the histogram are used to locate the clusters in the image.[1]
Color or intensity can be used as the measure.
A refinement of this technique is to recursively apply the histogram-seeking method to clusters in the image in
order to divide them into smaller clusters. This operation is repeated with smaller and smaller clusters until no
more clusters are formed.[1][14]
One disadvantage of the histogram-seeking method is that it may be difficult to identify significant peaks and
valleys in the image.
Histogram-based approaches can also be quickly adapted to apply to multiple frames, while maintaining their
single pass efficiency. The histogram can be done in multiple fashions when multiple frames are considered.
The same approach that is taken with one frame can be applied to multiple, and after the results are merged,
peaks and valleys that were previously difficult to identify are more likely to be distinguishable. The histogram
4/18/2016 1:47 PM
5 of 18
https://en.wikipedia.org/wiki/Image_segmentation
can also be applied on a per-pixel basis where the resulting information is used to determine the most frequent
color for the pixel location. This approach segments based on active objects and a static environment, resulting
in a different type of segmentation useful in Video tracking.
Edge detection
Edge detection is a well-developed field on its own within image processing. Region boundaries and edges are
closely related, since there is often a sharp adjustment in intensity at the region boundaries. Edge detection
techniques have therefore been used as the base of another segmentation technique.
The edges identified by edge detection are often disconnected. To segment an object from an image however,
one needs closed region boundaries. The desired edges are the boundaries between such objects or spatialtaxons.[15] [16]
Spatial-taxons[17] are information granules.,[18] consisting of a crisp pixel region, stationed at abstraction levels
within a hierarchical nested scene architecture. They are similar to the Gestalt psychological designation of
figure-ground, but are extended to include foreground, object groups, objects and salient object parts. Edge
detection methods can be applied to the spatial-taxon region, in the same manner they would be applied to a
silhouette. This method is particularly useful when the disconnected edge is part of an illusory contour[19][20]
Segmentation methods can also be applied to edges obtained from edge detectors. Lindeberg and Li[21]
developed an integrated method that segments edges into straight and curved edge segments for parts-based
object recognition, based on a minimum description length (MDL) criterion that was optimized by a splitand-merge-like method with candidate breakpoints obtained from complementary junction cues to obtain more
likely points at which to consider partitions into different segments.
This method is a combination of three characteristics of the image: partition of the image based on histogram
analysis is checked by high compactness of the clusters (objects), and high gradients of their borders. For that
purpose two spaces has to be introduced: one space is the one-dimensional histogram of brightness H = H(B),
the second space the dual 3-dimensional space of the original image itself B = B(x, y). The first space allows
to measure how compact is distributed the brightness of the image by calculating minimal clustering kmin.
Threshold brightness T corresponding to kmin defines the binary (black-and-white) image bitmap b = (x, y),
where (x, y) = 0, if B(x, y) < T, and (x, y) = 1, if B(x, y) T. The bitmap b is an object in dual space. On that
bitmap a measure has to be defined reflecting how compact distributed black (or white) pixels are. So, the goal
is to find objects with good borders. For all T the measure MDC =G/(k-L) has to be calculated (where k is
difference in brightness between the object and the background, L is length of all borders, and G is mean
gradient on the borders). Maximum of MDC defines the segmentation.[22]
Region-growing methods
Region-growing methods rely mainly on the assumption that the neighboring pixels within one region have
similar values. The common procedure is to compare one pixel with its neighbors. If a similarity criterion is
satisfied, the pixel can be set to belong to the cluster as one or more of its neighbors. The selection of the
similarity criterion is significant and the results are influenced by noise in all instances.
4/18/2016 1:47 PM
6 of 18
https://en.wikipedia.org/wiki/Image_segmentation
The method of Statistical Region Merging[23] (SRM) starts by building the graph of pixels using
4-connectedness with edges weighted by the absolute value of the intensity difference. Initially each pixel forms
a single pixel region. SRM then sorts those edges in a priority queue and decide whether or not to merge the
current regions belonging to the edge pixels using a statistical predicate.
One region-growing method is the seeded region growing method. This method takes a set of seeds as input
along with the image. The seeds mark each of the objects to be segmented. The regions are iteratively grown by
comparison of all unallocated neighboring pixels to the regions. The difference between a pixel's intensity value
and the region's mean, , is used as a measure of similarity. The pixel with the smallest difference measured in
this way is assigned to the respective region. This process continues until all pixels are assigned to a region.
Because seeded region growing requires seeds as additional input, the segmentation results are dependent on the
choice of seeds, and noise in the image can cause the seeds to be poorly placed.
Another region-growing method is the unseeded region growing method. It is a modified algorithm that does
not require explicit seeds. It starts with a single region
the pixel chosen here does not markedly influence
the final segmentation. At each iteration it considers the neighboring pixels in the same way as seeded region
growing. It differs from seeded region growing in that if the minimum is less than a predefined threshold
then it is added to the respective region
. If not, then the pixel is considered different from all current regions
and a new region
is created with this pixel.
One variant of this technique, proposed by Haralick and Shapiro (1985),[1] is based on pixel intensities. The
mean and scatter of the region and the intensity of the candidate pixel are used to compute a test statistic. If the
test statistic is sufficiently small, the pixel is added to the region, and the regions mean and scatter are
recomputed. Otherwise, the pixel is rejected, and is used to form a new region.
This method starts at the root of the tree that represents the whole image. If it is found non-uniform (not
homogeneous), then it is split into four child squares (the splitting process), and so on. If, in contrast, four child
squares are homogeneous, they are merged as several connected components (the merging process). The node in
the tree is a segmented node. This process continues recursively until no further splits or merges are possible.
[25][26] When a special data structure is involved in the implementation of the algorithm of the method, its time
complexity can reach
, an optimal algorithm of the method.[27]
Using a partial differential equation (PDE)-based method and solving the PDE equation by a numerical scheme,
one can segment the image.[28] Curve propagation is a popular technique in this category, with numerous
applications to object extraction, object tracking, stereo reconstruction, etc. The central idea is to evolve an
initial curve towards the lowest potential of a cost function, where its definition reflects the task to be addressed.
As for most inverse problems, the minimization of the cost functional is non-trivial and imposes certain
smoothness constraints on the solution, which in the present case can be expressed as geometrical constraints on
4/18/2016 1:47 PM
7 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Parametric methods
Lagrangian techniques are based on parameterizing the contour according to some sampling strategy and then
evolve each element according to image and internal terms. Such techniques are fast and efficient, however the
original "purely parametric" formulation (due to Kass, Witkin and Terzopoulos in 1987 and known as "snakes"),
is generally criticized for its limitations regarding the choice of sampling strategy, the internal geometric
properties of the curve, topology changes (curve splitting and merging), addressing problems in higher
dimensions, etc.. Nowadays, efficient "discretized" formulations have been developed to address these
limitations while maintaining high efficiency. In both cases, energy minimization is generally conducted using a
steepest-gradient descent, whereby derivatives are computed using, e.g., finite differences.
The level set method was initially proposed to track moving interfaces by Osher and Sethian in 1988 and has
spread across various imaging domains in the late 90s. It can be used to efficiently address the problem of
curve/surface/etc. propagation in an implicit manner. The central idea is to represent the evolving contour using
a signed function whose zero corresponds to the actual contour. Then, according to the motion equation of the
contour, one can easily derive a similar flow for the implicit surface that when applied to the zero level will
reflect the propagation of the contour. The level set method affords numerous advantages: it is implicit, is
parameter-free, provides a direct way to estimate the geometric properties of the evolving structure, allows for
change of topology, and is intrinsic. It can be used to define an optimization framework, as proposed by Zhao,
Merriman and Osher in 1996. One can conclude that it is a very convenient framework for addressing numerous
applications of computer vision and medical image analysis.[29] Research into various level set data structures
has led to very efficient implementations of this method.
The fast marching method has been used in image segmentation,[30] and this model has been improved
(permitting a both positive and negative speed propagation speed) in an approach called the generalized fast
marching method.[31]
Variational methods
The goal of variational methods is to find a segmentation which is optimal with respect to a specific energy
functional. The functionals consist of a data fitting term and a regularizing terms. A classical representative is
the Potts model defined for an image by
A minimizer
is a piecewise constant image which has an optimal tradeoff between the squared L2 distance
to the given image and the total length of its jump set. The jump set of
defines a segmentation. The
relative weight of the energies is tuned by the parameter
. The binary variant of the Potts model, i.e., if
the range of is restricted to two values, is often called Chan-Vese model.[32] An important generalization is
the Mumford-Shah model [33] given by
4/18/2016 1:47 PM
8 of 18
https://en.wikipedia.org/wiki/Image_segmentation
The functional value is the sum of the total length of the segmentation curve , the smoothness of the
approximation , and its distance to the original image . The weight of the smoothness penalty is adjusted by
. The Potts model is often called piecewise constant Mumford-Shah model as it can be seen as the
degenerate case
. The optimization problems are known to be NP-hard in general but near-minimizing
strategies work well in practice. Classical algorithms are graduated non-convexity and Ambrosio-Tortorelli
approximation.
Graph partitioning methods are an effective tools for image segmentation since they model the impact of pixel
neighborhoods on a given cluster of pixels or pixel, under the assumption of homogeneity in images. In these
methods, the image is modeled as a weighted, undirected graph. Usually a pixel or a group of pixels are
associated with nodes and edge weights define the (dis)similarity between the neighborhood pixels. The graph
(image) is then partitioned according to a criterion designed to model "good" clusters. Each partition of the
nodes (pixels) output from these algorithms are considered an object segment in the image. Some popular
algorithms of this category are normalized cuts,[34] random walker,[35] minimum cut,[36] isoperimetric
partitioning,[37] minimum spanning tree-based segmentation,[38] and segmentation-based object categorization.
The application of Markov random fields (MRF) for images was suggested in early 1984 by Geman and
Geman.[39] Their strong mathematical foundation and ability to provide a global optima even when defined on
local features proved to be the foundation for novel research in the domain of image analysis, de-noising and
segmentation. MRFs are completely characterized by their prior probability distributions, marginal probability
distributions, cliques, smoothing constraint as well as criterion for updating values. The criterion for image
segmentation using MRFs is restated as finding the labelling scheme which has maximum probability for a
given set of features. The broad categories of image segmentation using MRFs are supervised and unsupervised
segmentation.
Supervised Image Segmentation using MRF and MAP
In terms of image segmentation, the function that MRFs seek to maximize is the probability of identifying a
labelling scheme given a particular set of features are detected in the image. This is a restatement of the
Maximum a posteriori estimation method.
4/18/2016 1:47 PM
9 of 18
https://en.wikipedia.org/wiki/Image_segmentation
The generic algorithm for image segmentation using MAP is given below:
1. Define the neighborhood of each feature (random variable in MRF terms).
Generally this includes 1st order or 2nd order neighbors.
2. Set initial probabilities
for pixel
and define an initial set of clusters.
3. Using the training data compute the mean ( l i) and variance (
li)
and the class statistics calculated earlier. A Gaussian model is used for the marginal distribution.
5. Calculate the probability of each class label given the neighborhood defined previously.
Clique potentials are used to model the social impact in labeling.
6. Iterate over new prior probabilities and redefine clusters such that these probabilities are maximized.
This is done using a variety of optimization algorithms described below.
7. Stop when probability is maximized and labeling scheme does not change.
The calculations can be implemented in log likelihood terms as well.
Optimization algorithms
Each optimization algorithm is an adaptation of models from a variety of fields and they are set apart by their
unique cost functions. The common trait of cost functions is to penalize change in pixel value as well as
difference in pixel label when compared to labels of neighboring pixels.
Iterated Conditional Modes/Gradient Descent
The ICM algorithm tries to reconstruct the ideal labeling scheme by changing the values of each pixel over each
iteration and evaluating the energy of the new labeling scheme using the cost function given below,
i
initial i
N(i)
q(i)
where is the penalty for change in pixel label and is the penalty for difference in label between neighboring
pixels and chosen pixel. Here
is neighborhood of pixel i and is the Kronecker delta function. A major
issue with ICM is that, similar to gradient descent, it has a tendency to rest over local maxima and thus not
obtain a globally optimal labeling scheme.
Simulated Annealing(SA)
Derived as an analogue of annealing in metallurgy, SA uses change in pixel label over iterations and estimates
4/18/2016 1:47 PM
10 of 18
https://en.wikipedia.org/wiki/Image_segmentation
the difference in energy of each newly formed graph to the initial data. If the newly formed graph is more
profitable, in terms of low energy cost, given by:
new
old
the algorithm selects the newly formed graph. Simulated annealing requires the input of temperature schedules
which directly affects the speed of convergence of the system, as well as energy threshold for minimization to
occur.
Alternative Algorithms
A range of other methods exist for solving simple as well as higher order MRFs. They include Maximization of
Posterior Marginal, Multi-scale MAP estimation,[40] Multiple Resolution segmentation[41] and more. Apart
from likelihood estimates, graph-cut using maximum flow[42] and other highly constrained graph based
methods[43][44] exist for solving MRFs.
Unsupervised Image Segmentation using MRF and Expectation Maximization
A subset of unsupervised machine learning, the Expectationmaximization algorithm is utilized to iteratively
estimate the a posterior probabilities and distributions of labeling when no training data is available and no
estimate of segmentation model can be formed. A general approach is to use histograms to represent the
features of an image and proceed as outlined briefly in the 3-step algorithm mentioned below,
1. A random estimate of the model parameters (same as in supervised learning) is utilized.
2. E-Step: Estimate class statistics based on the random segmentation model defined. Using these, compute the
conditional probability of belonging to a label given the feature set is calculated using naive Bayes' theorem.
Here
3. M-Step: The established relevance of a given feature set to a labeling scheme is now used to compute the a
priori estimate of a given label in the second part of the algorithm. Since the actual number of total labels is
unknown (from a training data set), a hidden estimate of the number of labels given by the user is utilized in
computations.
where
4/18/2016 1:47 PM
11 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Watershed transformation
The watershed transformation considers the gradient magnitude of an image as a topographic surface. Pixels
having the highest gradient magnitude intensities (GMIs) correspond to watershed lines, which represent the
region boundaries. Water placed on any pixel enclosed by a common watershed line flows downhill to a
common local intensity minimum (LIM). Pixels draining to a common minimum form a catch basin, which
represents a segment.
The central assumption of such an approach is that structures of interest/organs have a repetitive form of
4/18/2016 1:47 PM
12 of 18
https://en.wikipedia.org/wiki/Image_segmentation
geometry. Therefore, one can seek for a probabilistic model towards explaining the variation of the shape of the
organ and then when segmenting an image impose constraints using this model as prior. Such a task involves (i)
registration of the training examples to a common pose, (ii) probabilistic representation of the variation of the
registered samples, and (iii) statistical inference between the model and the image. State of the art methods in
the literature for knowledge-based segmentation involve active shape and appearance models, active contours
and deformable templates and level-set based methods.
Multi-scale segmentation
Image segmentations are computed at multiple scales in scale space and sometimes propagated from coarse to
fine scales; see scale-space segmentation.
Segmentation criteria can be arbitrarily complex and may take into account global as well as local criteria. A
common requirement is that each region must be connected in some sense.
Witkin's seminal work[47][48] in scale space included the notion that a one-dimensional signal could be
unambiguously segmented into regions, with one scale parameter controlling the scale of segmentation.
A key observation is that the zero-crossings of the second derivatives (minima and maxima of the first
derivative or slope) of multi-scale-smoothed versions of a signal form a nesting tree, which defines hierarchical
relations between segments at different scales. Specifically, slope extrema at coarse scales can be traced back to
corresponding features at fine scales. When a slope maximum and slope minimum annihilate each other at a
larger scale, the three segments that they separated merge into one segment, thus defining the hierarchy of
segments.
There have been numerous research works in this area, out of which a few have now reached a state where they
can be applied either with interactive manual intervention (usually with application to medical imaging) or fully
automatically. The following is a brief overview of some of the main research ideas that current approaches are
based upon.
The nesting structure that Witkin described is, however, specific for one-dimensional signals and does not
trivially transfer to higher-dimensional images. Nevertheless, this general idea has inspired several other authors
to investigate coarse-to-fine schemes for image segmentation. Koenderink[49] proposed to study how
iso-intensity contours evolve over scales and this approach was investigated in more detail by Lifshitz and
Pizer.[50] Unfortunately, however, the intensity of image features changes over scales, which implies that it is
hard to trace coarse-scale image features to finer scales using iso-intensity information.
Lindeberg[51][52] studied the problem of linking local extrema and saddle points over scales, and proposed an
image representation called the scale-space primal sketch which makes explicit the relations between structures
at different scales, and also makes explicit which image features are stable over large ranges of scale including
locally appropriate scales for those. Bergholm proposed to detect edges at coarse scales in scale-space and then
trace them back to finer scales with manual choice of both the coarse detection scale and the fine localization
scale.
Gauch and Pizer[53] studied the complementary problem of ridges and valleys at multiple scales and developed
4/18/2016 1:47 PM
13 of 18
https://en.wikipedia.org/wiki/Image_segmentation
a tool for interactive image segmentation based on multi-scale watersheds. The use of multi-scale watershed
with application to the gradient map has also been investigated by Olsen and Nielsen[54] and been carried over
to clinical use by Dam[55] Vincken et al.[56] proposed a hyperstack for defining probabilistic relations between
image structures at different scales. The use of stable image structures over scales has been furthered by
Ahuja[57][58] and his co-workers into a fully automated system. A fully automatic brain segmentation algorithm
based on closely related ideas of multi-scale watersheds has been presented by Undeman and Lindeberg[59] and
been extensively tested in brain databases.
These ideas for multi-scale image segmentation by linking image structures over scales have also been picked
up by Florack and Kuijper.[60] Bijaoui and Ru[61] associate structures detected in scale-space above a
minimum noise threshold into an object tree which spans multiple scales and corresponds to a kind of feature in
the original signal. Extracted features are accurately reconstructed using an iterative conjugate gradient matrix
method.
Semi-automatic segmentation
In one kind of segmentation, the user outlines the region of interest with the mouse clicks and algorithms are
applied so that the path that best fits the edge of the image is shown.
Techniques like SIOX, Livewire, Intelligent Scissors or IT-SNAPS are used in this kind of segmentation. In an
alternative kind of semi-automatic segmentation, the algorithms return a spatial-taxon (i.e. foreground, objectgroup, object or object-part) selected by the user or designated via prior probabilities.[62][63]
Trainable segmentation
Most segmentation methods are based only on color information of pixels in the image. Humans use much more
knowledge than this when doing image segmentation, but implementing this knowledge would cost
considerable computation time and would require a huge domain-knowledge database, which is currently not
available. In addition to traditional segmentation methods, there are trainable segmentation methods which can
model some of this knowledge.
Neural Network segmentation relies on processing small areas of an image using an artificial neural network[64]
or a set of neural networks. After such processing the decision-making mechanism marks the areas of an image
accordingly to the category recognized by the neural network. A type of network designed especially for this is
the Kohonen map.
Pulse-coupled neural networks (PCNNs) are neural models proposed by modeling a cats visual cortex and
developed for high-performance biomimetic image processing. In 1989, Eckhorn introduced a neural model to
emulate the mechanism of a cats visual cortex. The Eckhorn model provided a simple and effective tool for
studying the visual cortex of small mammals, and was soon recognized as having significant application
potential in image processing. In 1994, the Eckhorn model was adapted to be an image processing algorithm by
Johnson, who termed this algorithm Pulse-Coupled Neural Network. Over the past decade, PCNNs have been
utilized for a variety of image processing applications, including: image segmentation, feature generation, face
extraction, motion detection, region growing, noise reduction, and so on. A PCNN is a two-dimensional neural
network. Each neuron in the network corresponds to one pixel in an input image, receiving its corresponding
pixels color information (e.g. intensity) as an external stimulus. Each neuron also connects with its neighboring
neurons, receiving local stimuli from them. The external and local stimuli are combined in an internal activation
system, which accumulates the stimuli until it exceeds a dynamic threshold, resulting in a pulse output. Through
4/18/2016 1:47 PM
14 of 18
https://en.wikipedia.org/wiki/Image_segmentation
iterative computation, PCNN neurons produce temporal series of pulse outputs. The temporal series of pulse
outputs contain information of input images and can be utilized for various image processing applications, such
as image segmentation and feature generation. Compared with conventional image processing means, PCNNs
have several significant merits, including robustness against noise, independence of geometric variations in
input patterns, capability of bridging minor intensity variations in input patterns, etc.
Open-source implementations of trainable segmentation:
Other methods
There are many other methods of segmentation like multispectral segmentation or connectivity-based
segmentation based on DTI images.[65]
Segmentation benchmarking
Several segmentation benchmarks are available for comparing the performance of segmentation methods with
the state-of-the-art segmentation methods on standardized sets:
Prague On-line Texture Segmentation Benchmark (http://mosaic.utia.cas.cz)[66]
The Berkeley Segmentation Dataset and Benchmark (http://www.eecs.berkeley.edu/Research/Projects
/CS/vision/bsds/)[67]
See also
Computer vision
Image-based meshing
Range image segmentation
Vector quantization
Image quantization
Color quantization
Notes
4/18/2016 1:47 PM
15 of 18
https://en.wikipedia.org/wiki/Image_segmentation
4/18/2016 1:47 PM
16 of 18
https://en.wikipedia.org/wiki/Image_segmentation
4/18/2016 1:47 PM
17 of 18
https://en.wikipedia.org/wiki/Image_segmentation
References
3D Entropy Based Image Segmentation (http://web.archive.org/web/20080314011622/http:
//instrumentation.hit.bg:80/Papers/2008-02-02%203D%20Multistage%20Entropy.htm)
Frucci, Maria; Sanniti di Baja, Gabriella (2008). "From Segmentation to Binarization of Gray-level Images". Journal
of Pattern Recognition Research 3 (1): 113. doi:10.13176/11.54.
External links
Some sample code that performs basic segmentation (http://csc.fsksm.utm.my/syed/projects/imageprocessing.html), by Syed Zainudeen. University Technology of Malaysia.
Generalized Fast Marching method (http://rd.springer.com/article/10.1007/s11075-008-9183-x) by
Forcadel et al. [2008] for applications in image segmentation.
Image Processing Research Group (http://www.iprg.co.in) An Online Open Image Processing Research
4/18/2016 1:47 PM
18 of 18
https://en.wikipedia.org/wiki/Image_segmentation
Community.
Segmentation methods in image processing and analysis (https://www.mathworks.com/discovery/imagesegmentation.html)
More image segmentation methods with detailed algorithms (http://disp.ee.ntu.edu.tw/meeting/%E6%98
%B1%E7%BF%94/Segmentation%20tutorial.pdf) by Yu-Hsiang Wang (), National Taiwan
University, Taipei, Taiwan, ROC
Retrieved from "https://en.wikipedia.org/w/index.php?title=Image_segmentation&oldid=709497296"
Categories: Image segmentation
This page was last modified on 11 March 2016, at 07:49.
Text is available under the Creative Commons Attribution-ShareAlike License; additional terms may
apply. By using this site, you agree to the Terms of Use and Privacy Policy. Wikipedia is a registered
trademark of the Wikimedia Foundation, Inc., a non-profit organization.
4/18/2016 1:47 PM