Traditionally, colour volume or “colourfulness” of an object has been measured by computing the volume of the convex hull containing the data points, as described in (Stoddard and Prum 2008)
\(\alpha\)-shapes are a new tool available in pavo
to estimate colour volumes, while allowing the presence of voids and pockets, which may lead to a more accurate measurement of “colourfulness” than convex hulls. For more information on the theoretical background, please report to the related article (Gruson 2020)
You can plot the colour volume using \(\alpha\)-shape with the vol()
function (for non-interactive plots, tcsvol()
otherwise) by specifying type = "alpha"
. By default, this will use the \(\alpha^*\) value defined in Gruson (2020).
library(pavo)
data(flowers)
vis_flowers <- vismodel(flowers, visual = "avg.uv")
tcs_flowers <- colspace(vis_flowers)
plot(tcs_flowers)
To get the colour volume value, you can use the summary.colspace()
function. The colour volume computed by the convex hull is contained in the c.vol
column and the colour volume computed by the \(\alpha\)-shape (with parameter \(\alpha^*\)) is contained in the a.vol
column:
Alternatively, you can set the \(\alpha\) parameter to the value of your choice via the avalue
argument:
In the previous section, we focused on \(\alpha\)-shapes in chromaticity diagrams since it is the most common space where convex hulls (that \(\alpha\)-shapes aim at replacing) are used. But it is also possible to use \(\alpha\)-shapes in other spaces, such as perceptually uniform spaces.
Let’s first build this uniform space and look at the data points in this space:
High-level functions to build the \(\alpha\)-shape directly in pavo
have not yet been implemented but you can use the alphashape3d
package directly to compute the \(\alpha\)-shapes, its volume and display it in a 3D interactive plot.
\(\alpha\)-shapes can also be used to measure the colour similarity of two objects, by computing the colour volume overlap. This is done in pavo
with the overlap3d()
function. For example, let’s compare the colour volume of the crown and the breast of stripe-tailed yellow finches (Sicalis citrina):
data(sicalis)
tcs.sicalis.C <- subset(colspace(vismodel(sicalis)), "C")
tcs.sicalis.B <- subset(colspace(vismodel(sicalis)), "B")
Gruson, Hugo. 2020. “Estimation of Colour Volumes as Concave Hypervolumes Using α-Shapes.” Methods in Ecology and Evolution 11 (8): 955–63. https://doi.org/10.1111/2041-210X.13398.
Stoddard, Mary Caswell, and Richard O. Prum. 2008. “Evolution of Avian Plumage Color in a Tetrahedral Color Space: A Phylogenetic Analysis of New World Buntings.” The American Naturalist 171 (6): 755–76. https://doi.org/10.1086/587526.