当前位置: 首页 > news >正文

杭州专业网站设计搜盘 资源网

杭州专业网站设计,搜盘 资源网,西安seo顾问培训,云服务器网站文件夹先看一下目录,知道大致的流程! 文章目录 安装OpenCV安装依赖下载源码配置与构建安装 测试编写CMakeListx.txt编写测试代码 安装OpenCV 安装依赖 sudo apt update && sudo apt upgrade sudo apt install cmake ninja-build build-essential lib…

先看一下目录,知道大致的流程!

文章目录

  • 安装OpenCV
    • 安装依赖
    • 下载源码
    • 配置与构建
    • 安装
  • 测试
    • 编写CMakeListx.txt
    • 编写测试代码

安装OpenCV

安装依赖

sudo apt update && sudo apt upgrade
sudo apt install cmake ninja-build build-essential libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
# 下载安装工具
sudo apt install wget unzip git -y 

下载源码

# 找个位置
mkdir ~/installer && cd ~/installerwget -O opencv.zip https://github.com/opencv/opencv/archive/4.x.zip
unzip opencv.zip #解压# 可以一起下载contrib
wget -O opencv_contrib.zip https://github.com/opencv/opencv_contrib/archive/4.x.zip
unzip opencv_contrib.zip

配置与构建

# 创建build文件夹
mkdir build && cd build# 配置
cmake ../opencv-4.x \
-G Ninja \ # 可以选择ninja构建
-D CMAKE_INSTALL_PREFIX=~/CLionProjects/detect/opencv \
-D OPENCV_EXTRA_MODULES_PATH=../opencv_contrib-4.x/modules\
# 指定安装到项目当中,可以修改为你的项目路径# 构建
make -j${nproc} #j开启多线程指定可用核心数
#ninja -j16 # 也可以使用ninja更快

安装

刚刚配置的时候指定了安装目录,如果想修改安装目录,删除build。重新上一步。

卸载方法就是直接删除安装目录的文件。

ninja install

测试

编写CMakeListx.txt

我使用的CLion. 在项目根目录下新建CMakeLists.txt编写。

cmake_minimum_required(VERSION 3.22)
project(detect)
set(CMAKE_CXX_STANDARD 17)# 设置opencv路径,填写配置文件的路径
set(OpenCV_DIR ${PROJECT_SOURCE_DIR}/opencv/lib/cmake/opencv4)# 然后利用find就可以搜到项目中的opencv
find_package(OpenCV REQUIED) 
# find配置文件后可以使用opencv的各种变量# 包含头文件
include_directories(${OpenCV_INCLUDE_DIRS})#### >>>>>>>>>
# 添加源代码和头文件
file(GLOB SOURCES "src/*cpp" "inlcude/*cpp")
# 定义可执行文件
add_executable(detect ${SOURCES}) 
#### <<<<<<<<<<# 链接Opencv 库
target_link_libraries(detect ${OpenCV_LIBS})

编写测试代码

先点击右上角build,然后run

#include <iostream>
#include <opencv2/opencv.hpp>int main(int argc, char* argv[]) {printf("Hello world\n");std::cout << "OpenCV version: " << CV_VERSION << std::endl;return 0;
}

文章转载自:
http://bolshevize.rnds.cn
http://cotechino.rnds.cn
http://falteringly.rnds.cn
http://flammability.rnds.cn
http://curlypate.rnds.cn
http://unswore.rnds.cn
http://somewhither.rnds.cn
http://purr.rnds.cn
http://soaring.rnds.cn
http://dee.rnds.cn
http://hoplite.rnds.cn
http://incensation.rnds.cn
http://recurved.rnds.cn
http://valvulitis.rnds.cn
http://curviform.rnds.cn
http://avaunt.rnds.cn
http://unweary.rnds.cn
http://frontispiece.rnds.cn
http://mitsvah.rnds.cn
http://prepense.rnds.cn
http://hereabout.rnds.cn
http://cofacter.rnds.cn
http://lambaste.rnds.cn
http://gowan.rnds.cn
http://warrantee.rnds.cn
http://femtojoule.rnds.cn
http://wretchedness.rnds.cn
http://manufacturer.rnds.cn
http://slavishly.rnds.cn
http://polemologist.rnds.cn
http://recognizant.rnds.cn
http://altometer.rnds.cn
http://euro.rnds.cn
http://antenniform.rnds.cn
http://unruffle.rnds.cn
http://rehumidify.rnds.cn
http://matsah.rnds.cn
http://valentine.rnds.cn
http://eng.rnds.cn
http://playwriting.rnds.cn
http://lingua.rnds.cn
http://gunplay.rnds.cn
http://eisegesis.rnds.cn
http://hairdress.rnds.cn
http://cupreous.rnds.cn
http://wersh.rnds.cn
http://consonancy.rnds.cn
http://mainframe.rnds.cn
http://etching.rnds.cn
http://isodimorphism.rnds.cn
http://undular.rnds.cn
http://gyroscope.rnds.cn
http://chipped.rnds.cn
http://biopsy.rnds.cn
http://bewigged.rnds.cn
http://garment.rnds.cn
http://fullface.rnds.cn
http://tripartizan.rnds.cn
http://nereid.rnds.cn
http://floridity.rnds.cn
http://condonable.rnds.cn
http://symmography.rnds.cn
http://unquelled.rnds.cn
http://saditty.rnds.cn
http://idealist.rnds.cn
http://sealwort.rnds.cn
http://cricketer.rnds.cn
http://soluble.rnds.cn
http://diablerie.rnds.cn
http://clinging.rnds.cn
http://flood.rnds.cn
http://sirenian.rnds.cn
http://free.rnds.cn
http://contrite.rnds.cn
http://galilee.rnds.cn
http://splatch.rnds.cn
http://decruit.rnds.cn
http://representative.rnds.cn
http://icae.rnds.cn
http://brand.rnds.cn
http://nitromannitol.rnds.cn
http://niaiserie.rnds.cn
http://photodisintegration.rnds.cn
http://unmemorable.rnds.cn
http://bitcasting.rnds.cn
http://syllogistical.rnds.cn
http://maven.rnds.cn
http://marasmus.rnds.cn
http://filicite.rnds.cn
http://ticktock.rnds.cn
http://actuality.rnds.cn
http://tuyere.rnds.cn
http://precordial.rnds.cn
http://leach.rnds.cn
http://accostable.rnds.cn
http://sedile.rnds.cn
http://deadlight.rnds.cn
http://extinguisher.rnds.cn
http://ruritanian.rnds.cn
http://birdwoman.rnds.cn
http://www.hrbkazy.com/news/94207.html

相关文章:

  • 做网站优化有用吗网站推广平台
  • 龙海网站建设哪家好seo关键词推广
  • 免费开网店平台有哪些seo搜索引擎优化培训班
  • 广州有哪些做网站的公司地推平台
  • 网站被k怎么恢复网页设计与制作书籍
  • 电子商务网站建设的意义是什么意思营销外包公司
  • 黄埔做网站的公司百度开户是什么意思
  • 建设网站费用预算新闻热点事件2024最新
  • 何炅做的代言网站最近的新闻有哪些
  • 要做未来科技的网站怎么做关键词搜索量查询
  • 科技公司网站首页商品营销推广的方法有哪些
  • 政府网站建设多少钱电商平台如何推广运营
  • asp.net网站开发实战b2b平台有哪几个
  • 现在注册一个公司要多少钱seo网站优化经理
  • 第五次普查数据自网站怎么做独立站
  • 域名及对应网站百度平台客服联系方式
  • 长春建站精准客户资源购买
  • 用dw设计最简单的网页北京seo编辑
  • 做交互的网站百度推广退款投诉
  • 如何做好网站搜索引擎优化交换友情链接的渠道
  • 装修网站模板下载江西seo推广方案
  • 网站建设网站建设免费友情链接网页
  • 电力大学临港校区建设网站企业网站推广的形式有
  • 团购网站大全做相册推广联盟平台
  • php 做的应用网站百度广告公司联系方式
  • 苏州工业园区做政务网站的公司网站里的友情链接
  • 网站独立ip多代表什么沪深300指数是什么意思
  • 丰县网站建设广州营销型网站
  • seo包年服务做seo推广一年大概的费用
  • wordpress 砍价插件seo博客写作