colour.utilities.as_int_array#
- colour.utilities.as_int_array(a: ArrayLike, dtype: Type[DTypeInt] | None = None) NDArrayInt[source]#
Convert the specified variable \(a\) to
numpy.ndarrayusing the specified integernumpy.dtype.- Parameters:
a (ArrayLike) – Variable \(a\) to convert.
dtype (Type[DTypeInt] | None) –
numpy.dtypeto use for conversion, default to thenumpy.dtypedefined by thecolour.constant.DTYPE_INT_DEFAULTattribute.
- Returns:
Variable \(a\) converted to integer
numpy.ndarray.- Return type:
Examples
>>> as_int_array([1.0, 2.0, 3.0]) array([1, 2, 3]...)