fillHull | R Documentation |
Fill holes in objects.
fillHull(x)
x |
An |
fillHull
fills holes in the objects defined in x
, where
objects are sets of pixels with the same unique integer value.
An Image
object or an array, containing the transformed version
of x
.
Gregoire Pau, Oleg Sklyar; 2007
bwlabel
x = readImage(system.file('images', 'nuclei.tif', package='EBImage'))
display(x)
y = thresh(x, 10, 10, 0.05)
display(y, title='Cell nuclei')
y = fillHull(y)
display(y, title='Cell nuclei without holes')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.