blob: a169755d4ed351af6b6fb439ccdbf85bc85d94c8 [file] [log] [blame]
#ifndef ML_INPUT_H_
#define ML_INPUT_H_
#include <stdint.h>
// Subtract 128 from the image [uint8_t] to match model input [int8_t].
void ml_input(const int len, const uint8_t *image, int8_t *input);
#endif // ML_INPUT_H_