Upload first version

This commit is contained in:
dengliu1105 2026-01-06 10:29:54 +08:00
parent f95d5a63b0
commit 3bdf2003ec
898 changed files with 1405811 additions and 1 deletions

View file

@ -0,0 +1,22 @@
#ifndef UTILS_H
#define UTILS_H
#ifdef __cplusplus
extern "C" {
#endif
unsigned char *get_jpeg_rawData(const char *name,unsigned int width,unsigned int height);
void *read_file(const char *file_path, int *file_size);
int find_max_index(float *buf, unsigned int length);
void save_file(void * buffer, const char *file_path, unsigned int file_size);
double cosine_similarity(char *file1, char *file2, int file_size);
int bmp_read(const char *filename, int *nRGB, int *xsize, int *ysize);
void data_to_fp32(float *new_buffer, unsigned char *old_buffer, int sz, float scale, int zero_point, int type);
#ifdef __cplusplus
} //extern "C"
#endif
#endif // UTILS_H