Expand description
Interoperability conversions between the image and matrix types.
Functionsยง
- image_
from_ matrix - Convert an
u8
matrix into aGrayImage
. Inverse operation ofmatrix_from_image
. - image_
from_ matrix_ transposed - Create a gray image with a borrowed reference to the matrix buffer.
- matrix_
from_ image - Convert a
GrayImage
into anu8
matrix. Inverse operation ofimage_from_matrix
. - rgb_
from_ matrix - Convert an
(u8,u8,8)
matrix into anRgbImage
.