fix: add Image struct definition in opencv.cpp
Build and Deploy / build (push) Successful in 2m4s
Build and Deploy / deploy (push) Has been skipped

This commit is contained in:
2026-07-16 13:30:24 +00:00
parent 6bbec4da4a
commit ffd99a25c3
+8
View File
@@ -5,6 +5,14 @@
#include <string>
#include <cstring>
// 图像结构体定义
typedef struct {
unsigned char* data;
int width;
int height;
int channels;
} Image;
static std::string last_error;
extern "C" {