lua疑难问题记录
摘要:一、C语言调用Lua -- func.lua function func(str) print(str) return "Lua Progran" end // test.c #include <stdio.h> #include <lua.h> #include <lauxlib.h> #incl
阅读全文
posted @
2024-08-04 05:35
TN-mo
阅读(12)
推荐(0) 编辑
编译库文件随笔记录
摘要:// mylib.h #ifndef _MYLIB_H_ #define _MYLIB_H_ #include <stdio.h> void print();#endif // _MYLIB_H_ // mylib.c #include "mylib.h" void print() { printf
阅读全文
posted @
2024-08-03 04:46
TN-mo
阅读(11)
推荐(0) 编辑
Linux环境下配置OpenCV及其运行错误解决方案
摘要:报错现象: terminate called after throwing an instance of 'cv::Exception' what(): OpenCV(4.10.0) /home/user/Desktop/opencv/modules/highgui/src/window.cpp:1
阅读全文
posted @
2024-08-01 07:27
TN-mo
阅读(303)
推荐(0) 编辑