#' Do rings segmentation
#'
#' Segment an hemispherical view by slicing the zenith angle from zero to 90ยบ
#' in equals intervals.
#'
#' @inheritParams ootb_mblt
#' @param angle_width Numeric vector of length one. Angle in degrees able to
#' divide the angle range into a whole number of segments.
#' @param return_angle Logical vector of length one. If it is `FALSE`, all
#' the pixels that belong to a segment are labeled with an ID number.
#' Otherwise, the angle mean of the segment is assigned to the pixels.
#'
#' @return An object of the class [SpatRaster-class] with segments
#' shaped like concentric rings.
#' @export
#'
#' @family Segmentation Functions
#'
#' @examples
#' z <- zenith_image(600, lens())
#' rings <- rings_segmentation(z, 15)
#' plot(rings == 1)
rings_segmentation <- function(z, angle_width, return_angle = FALSE) {
.is_single_layer_raster(z, "z")
stopifnot(.get_max(z) <= 90)
stopifnot(class(return_angle) == "logical")
stopifnot(length(angle_width) == 1)
if (!.is_whole(90 / angle_width)) {
stop(
paste("angle_width should divide the,",
"0 to 90 range into a whole number of segments.")
)
}
intervals <- seq(0, 90, angle_width)
c1 <- intervals[1:(length(intervals) - 1)]
c2 <- intervals[2:length(intervals)]
if (return_angle) {
c3 <- (c1 + c2) / 2
} else {
c3 <- 1:(length(intervals) - 1)
}
rcl <- matrix(c(c1, c2, c3), ncol = 3)
rings <- terra::classify(z, rcl)
rings[is.na(rings)] <- 0
names(rings) <- "Rings"
rings
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.