开源软件名称(OpenSource Name):satoren/luaOpenCV开源软件地址(OpenSource Url):https://github.com/satoren/luaOpenCV开源编程语言(OpenSource Language):C++ 92.8%开源软件介绍(OpenSource Introduction):LuaOpenCVOpenCV binding for Lua Experimental. The API may be changed. Licensed under Boost Software License Requirements
Getting StartedCheck out third pary libraries. git submodule update --init --recursive On Windows (with MSVC2015)Build and local installation for OpenCV cd third_party\opencv
mkdir build
cd build
cmake ..\ -DCMAKE_INSTALL_PREFIX=..\..\opencvlib -DBUILD_SHARED_LIBS=Off -DBUILD_WITH_STATIC_CRT=Off
cmake --build . --config Release
cmake --build . --config Release --target install Building lua library cd ..\..\.. # return to root of source tree
mkdir build
cd build
cmake ..\
cmake --build . --config Release Outputed cv.dll into lua.cpath directory. And execute sample lua samples/hello_opencv.lua On Unix-like Systems(with Unix Makefiles)Build and local installation for OpenCV cd third_party/opencv
mkdir build
cd build
cmake ../ -DCMAKE_INSTALL_PREFIX=../../opencvlib -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=Off
cmake --build .
cmake --build . --target install Building lua library cd ../../.. # return to root of source tree
mkdir build
cd build
cmake ../ -DCMAKE_BUILD_TYPE=Release
cmake --build . Outputed libcv.so into lua.cpath directory. And execute sample lua samples/hello_opencv.lua |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论