mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-12 01:10:45 -06:00
11 lines
229 B
C++
11 lines
229 B
C++
#include <opencv2/opencv.hpp>
|
|
|
|
using namespace cv;
|
|
using namespace std;
|
|
|
|
class ConversionUtils {
|
|
public:
|
|
static uint8_t *matrix_to_bytearray(Mat mat);
|
|
static Mat bytearray_to_matrix(uint8_t *bytes, int byteCount);
|
|
};
|