imagezero-sys 0.1.1

Rust wrapper for imagezero (losless image compression algorithm) used i.e. in robotics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef IZ_LIBIZ_H
#define IZ_LIBIZ_H 1

#include "image.h"

namespace IZ {

void initDecodeTable();
void initEncodeTable();

void decodeImageSize(Image &im, const unsigned char *src);

const unsigned char *decodeImage(Image &im, const unsigned char *src);
unsigned char *encodeImage(const Image &im, unsigned char *dest);

} // namespace IZ

#endif