Skip to contents

Calculate solidity as the ratio of shape area to convex hull area.

Usage

get_solidity(x, ..., .cols = NULL)

Arguments

x

A matrix (nx2), list of matrices, or tibble with coo columns.

...

Additional arguments (reserved for future use).

.cols

Column name(s) to process when x is a tibble. If NULL, automatically detects columns containing coo objects.

Value

  • If x is a single matrix: returns a numeric scalar

  • If x is a list: returns a numeric vector

  • If x is a tibble: returns a numeric vector extracted from coo column

Details

Solidity = Area(shape) / Area(convex_hull). Value of 1 for convex shapes. Lower values indicate concavities or holes.

Examples

get_solidity(shapes$cat)
#> [1] 0.787616

# Use in measure()
bot %>% measure("solidity")
#> # A tibble: 40 × 6
#>    id           coo       type   fake  price coo_solidity
#>    <chr>        <out>     <fct>  <fct> <dbl>        <dbl>
#>  1 brahma       (138 x 2) whisky a       3          0.893
#>  2 caney        (168 x 2) whisky a       1.2        0.920
#>  3 chimay       (189 x 2) whisky a       3.8        0.928
#>  4 corona       (129 x 2) whisky a       2.6        0.944
#>  5 deusventrue  (152 x 2) whisky a       1.1        0.875
#>  6 duvel        (161 x 2) whisky a       3.1        0.954
#>  7 franziskaner (124 x 2) whisky a       2.6        0.949
#>  8 grimbergen   (126 x 2) whisky a       2.9        0.922
#>  9 guiness      (183 x 2) whisky a       1.2        0.916
#> 10 hoegardeen   (193 x 2) whisky a       3.6        0.933
#> # ℹ 30 more rows