colour.utilities.as_int_array#

colour.utilities.as_int_array(a: ArrayLike, dtype: Type[DTypeInt] | None = None) NDArrayInt[source]#

Convert given variable \(a\) to numpy.ndarray using given numpy.dtype.

Parameters:
  • a (ArrayLike) – Variable \(a\) to convert.

  • dtype (Type[DTypeInt] | None) – numpy.dtype to use for conversion, default to the numpy.dtype defined by the colour.constant.DTYPE_INT_DEFAULT attribute.

Returns:

Variable \(a\) converted to numpy.ndarray.

Return type:

numpy.ndarray

Examples

>>> as_int_array([1.0, 2.0, 3.0])  
array([1, 2, 3]...)