RegionBinarize

RegionBinarize[image,marker,d]

gives a binary version of image that includes the foreground pixels of marker and also connected regions whose pixel values are within a distance d.

RegionBinarize[image,marker,d,{t1,t2}]

grows regions in marker by adding pixels whose average intensity is also constrained within an interval {t1,t2}.

Details and Options

  • RegionBinarize implements a variety of region-growing methods to find a binary segmentation of an image.
  • RegionBinarize works with arbitrary 2D and 3D images.
  • The target region marker can be any of the following:
  • markerimagea marker image
    {pos1,pos2,}a list of positions
  • Positions posi are assumed to be in the standard image coordinate system.
  • RegionBinarize[image,marker,d,backgroundmarker] grows regions starting from marker by adding only pixels that are not connected to backgroundmarker.
  • The following options can be specified:
  • MaxIterations 1maximum number of iterations to perform
    Method "MeanEuclidean"method used in computing pixel distances
  • With a setting MaxIterations->n, RegionBinarize is applied up to n times, using the previous result as the marker in each iteration.
  • Setting for the Method option specifies how to compute the distance between the values of pixels to be added and the image region to be grown. Pixels are included in the segmentation only if the distance is less than or equal to d. Possible settings are:
  • "MeanEuclidean"Euclidean distance to the mean of the region to be grown
    "Mahalanobis"Mahalanobis distance
  • The "Mahalanobis" distance is a Euclidean distance with a metric that is the inverse of the covariance matrix of pixel values in the region to be grown. If the initial region consists of only one or two pixels, then the covariance matrix is computed from a range-1 neighborhood around those pixels.
  • The possible range for the distance parameter d depends on the distance method as well as the dimension of the color space.

Examples

open allclose all

Basic Examples  (2)

Binary segmentation of a color image:

Binary segmentation of a 3D image:

Scope  (4)

Binary segmentation of a grayscale image:

Use a lower and upper threshold to limit the growing of the region:

Grow the region by using only the constrained intensity values:

Use a background marker to segment a region from a background with a similar color:

Options  (2)

MaxIterations  (1)

Use multiple iterations to grow a larger region:

Method  (1)

Use the Mahalanobis distance for growing the foreground region:

Applications  (3)

Segmentation of an MRI image, highlighting a brain tumor:

Find the skin-colored region in a portrait:

Find a background mask using multiple marker regions:

Use the negated mask as the alpha channel:

Wolfram Research (2010), RegionBinarize, Wolfram Language function, https://reference.wolfram.com/language/ref/RegionBinarize.html (updated 2012).

Text

Wolfram Research (2010), RegionBinarize, Wolfram Language function, https://reference.wolfram.com/language/ref/RegionBinarize.html (updated 2012).

CMS

Wolfram Language. 2010. "RegionBinarize." Wolfram Language & System Documentation Center. Wolfram Research. Last Modified 2012. https://reference.wolfram.com/language/ref/RegionBinarize.html.

APA

Wolfram Language. (2010). RegionBinarize. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/RegionBinarize.html

BibTeX

@misc{reference.wolfram_2023_regionbinarize, author="Wolfram Research", title="{RegionBinarize}", year="2012", howpublished="\url{https://reference.wolfram.com/language/ref/RegionBinarize.html}", note=[Accessed: 19-March-2024 ]}

BibLaTeX

@online{reference.wolfram_2023_regionbinarize, organization={Wolfram Research}, title={RegionBinarize}, year={2012}, url={https://reference.wolfram.com/language/ref/RegionBinarize.html}, note=[Accessed: 19-March-2024 ]}