runmat-runtime 0.4.8

Core runtime for RunMat with builtins, BLAS/LAPACK integration, and execution APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Image color and format conversion builtins.

pub(crate) mod common;
pub mod gray2rgb;
pub mod hsv2rgb;
pub mod im2double;
pub mod im2uint16;
pub mod im2uint8;
pub mod ind2rgb;
pub mod lab2rgb;
pub mod rgb2gray;
pub mod rgb2hsv;
pub mod rgb2lab;
pub(crate) mod type_resolvers;