文章分类 -  环境搭建

摘要:Step1: Github 下载 opencv 5 git clone --single-branch -b 5.x https://github.com/opencv/opencv.git Step2: 在 OpenCV 目录下创建 cmake 选项文件 options.txt -DBUILD_Z 阅读全文
posted @ 2024-06-07 15:14 RenjieW 阅读(62) 评论(0) 推荐(0)
摘要:本文使用的编译环境是 Android NDK,其他的只需要使用自己的编译环境即可 Step1: 下载并编译 harfbuzz git clone --single-branch -b 8.5.0 https://github.com/harfbuzz/harfbuzz.git export ANDR 阅读全文
posted @ 2024-06-04 11:38 RenjieW 阅读(66) 评论(0) 推荐(0)
摘要:本文主要讲述如何在构建OpenCV库,支持在Android设备上运行,并支持 opencv-mobile 中不支持的功能,比如:视频读写功能。具体步骤如下: Step 1: 下载 OpenCV 4.9.0 git clone https://github.com/opencv/opencv.git 阅读全文
posted @ 2024-06-04 11:00 RenjieW 阅读(50) 评论(0) 推荐(0)
摘要:配置tasks.json编译c++项目 { "version": "2.0.0", "tasks": [ { "label": "cmake", "type": "shell", "command": "cmake", "args": [ "-G", "Unix Makefiles", "-DCMA 阅读全文
posted @ 2024-05-15 11:46 RenjieW 阅读(16) 评论(0) 推荐(1)
摘要:1 anaconda更改默认镜像源 安装好anaconda之后,由于国内墙的限制,安装Python学习相关的包的下载速度很慢,所以需要更改默认的镜像源。以下提供两种更改conda镜像源的方式,以下代码均在Windows平台下的cmd窗口下运行 1.1 清华镜像源 conda config --add 阅读全文
posted @ 2024-04-27 00:40 RenjieW 阅读(973) 评论(0) 推荐(0)