2024年4月17日
摘要: pyinstaller:PyInstaller 是一个用于打包 Python 应用程序的工具,它可以将 Python 脚本打包成可执行文件,无需依赖外部 Python 解释器。你可以使用 PyInstaller 来将整个文件夹中的多个 Python 文件打包成一个可执行文件。 你可以通过以下命令安装 阅读全文
posted @ 2024-04-17 10:16 bdshr 阅读(7) 评论(0) 推荐(0) 编辑
  2022年4月29日
摘要: 用vcpkg编译zlib库的时候,在下载mingw-w64-i686-libwinpthread-git-8.0.0.5906.c9a21571-1-any.pkg.tar.zst文件的时候失败, vcpkg自身提供的所有的镜像都不能使用,在github上看了下,原因vcpkg中使用的地址是ming 阅读全文
posted @ 2022-04-29 17:02 bdshr 阅读(573) 评论(1) 推荐(1) 编辑
  2022年4月26日
摘要: https://blog.csdn.net/harry49/article/details/115763383 阅读全文
posted @ 2022-04-26 17:23 bdshr 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 1.说明 准备对C++开发的程序,用nuget来进行包管理,所以对nuget打包研究了下, 下面先看几个例子,重点关注目录结构和targets文件 2.例子 1.boost.1.79.0.nupkg,只包含了boost的头文件,带lib的在其他的包里. 2.boost_bzip2-vc143.1.7 阅读全文
posted @ 2022-04-26 10:37 bdshr 阅读(265) 评论(0) 推荐(0) 编辑
  2022年4月25日
摘要: 参考资料: 搭建私有的NuGet服务器 NuGet打包和发布 C++/C编程学习:使用nuget管理c++库的原理 Nuget服务的搭建-打包-上传-删除 一、服务器的建立 1.创建asp.net空的项目 2.添加NuGet.Server的nuget引用 3.编译并发布到IIS服务器. 4.参考资料 阅读全文
posted @ 2022-04-25 18:31 bdshr 阅读(193) 评论(0) 推荐(0) 编辑
摘要: 只写和Nuget相关的 Example: vcpkg export zlib zlib:x64-windows boost --nuget 相关命令参数: vcpkg help export //查看导出的帮助文档 --nuget Export a NuGet package //导出成Nuget包 阅读全文
posted @ 2022-04-25 17:43 bdshr 阅读(260) 评论(0) 推荐(0) 编辑
摘要: https://www.csdn.net/tags/MtTaEg0sNDQ2MzI5LWJsb2cO0O0O.html 阅读全文
posted @ 2022-04-25 13:43 bdshr 阅读(142) 评论(0) 推荐(0) 编辑
  2021年8月23日
摘要: 1.工具 1.tesseract 4.1.1下载 https://digi.bib.uni-mannheim.de/tesseract/ 2.训练工具 https://github.com/serak/serak-tesseract-trainer 3.Box文件编辑工具 https://githu 阅读全文
posted @ 2021-08-23 10:28 bdshr 阅读(1591) 评论(2) 推荐(0) 编辑
  2021年8月20日
摘要: Int.ToString(format): 格式字符串采用以下形式:Axx,其中 A 为格式说明符,指定格式化类型,xx 为精度说明符,控制格式化输出的有效位数或小数位数,具体如下: 格式说明符 说明 示例 结果 C 货币 2.5.ToString("C") ¥2.50 D 十进制数 25.ToSt 阅读全文
posted @ 2021-08-20 18:37 bdshr 阅读(392) 评论(0) 推荐(0) 编辑
  2021年8月17日
摘要: 通过GDI+对图片数据进行处理,下面列出各个效果的算法 对于读取图片的每个像素颜色的速度非常慢,这里使用LockBitmap类来对图片像素进行操作,LockBitmap类的定义看这里 http://www.cnblogs.com/bomo/archive/2013/02/26/2934055.htm 阅读全文
posted @ 2021-08-17 08:47 bdshr 阅读(339) 评论(0) 推荐(0) 编辑