mosaic_segment | R Documentation |
Segment a SpatRaster
using a computed image index. By default, values
greater than threshold
are kept in the mask.
mosaic_segment(
mosaic,
index = "R",
r = 3,
g = 2,
b = 1,
re = NA,
nir = NA,
swir = NA,
tir = NA,
threshold = "Otsu",
invert = FALSE,
return = c("mosaic", "mask")
)
mosaic |
A mosaic of class |
index |
A character value (or a vector of characters) specifying the
target mode for conversion to a binary image. Use |
r , g , b , re , nir , swir , tir |
The red, green, blue, red-edge, near-infrared, shortwave Infrared, and thermal infrared bands of the image, respectively. By default, the function assumes a BGR as input (b = 1, g = 2, r = 3). If a multispectral image is provided up to seven bands can be used to compute built-in indexes. There are no limitation of band numbers if the index is computed using the band name. |
threshold |
By default (threshold = "Otsu"), a threshold value based on Otsu's method is used to reduce the grayscale image to a binary image. If a numeric value is provided, this value will be used as a threshold. |
invert |
Logical, indicating whether to invert the mask. Defaults to
|
return |
The output of the function. Either 'mosaic' (the segmented mosaic), or 'mask' (the binary mask). |
The segmented mosaic (SpatRaster
object)
library(pliman)
mosaic <- mosaic_input(system.file("ex/elev.tif", package="terra"))
seg <-
mosaic_segment(mosaic,
index = "elevation",
threshold = 350)
mosaic_plot(seg)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.