张鸿
张鸿
依照项目部署命令 ```cmake git clone --depth=1 https://github.com/DefTruth/lite.ai.toolkit.git # latest cd lite.ai.toolkit && sh ./build.sh # >= 0.2.0, support Linux only. ``` 和output check代码 ```cmake cmake_minimum_required(VERSION 3.10) project(lite_yolov5) set(CMAKE_CXX_STANDARD 17) set(lite.ai.toolkit_DIR YOUR-PATH-TO/lite.ai.toolkit/build/install)...
##### Brief Description When I use Cpp dll to C#, finding CppSharp project, so I tried. I have 2 difference .net framework (7.0.408 and 8.0.202) in my machine. When I...
版本0.1.1已经可以在Windows中运行,并且也添加了自己训练的模型。现在想将自己的模型封装成C函数接口并在C#中使用,存在一些问题。接口代码已经写完,按照Windows打包DLL教程输出了DLL,但在使用C++测试C接口时,封装了OpenCV的接口无法读取图片。 是否打包成C函数接口DLL需要和添加模型中的教程类似?在添加的模型类中再定义该模型的C函数接口,模型类和接口函数一起按照添加模型教程中的方法走一遍。 谢谢。