opencv 安装

opencv 安装

工具

bash 复制代码
sudo apt-get install cmake

依赖包

bash 复制代码
sudo apt-get install build-essential libgtk2.0-dev libavcodec-dev libavformat-dev libjpeg.dev libtiff4.dev libswscale-dev libjasper-dev
bash 复制代码
sudo make
sudo make install
  • 配置环境
bash 复制代码
sudo /bin/bash -c 'echo "/usr/local/lib" > /etc/ld.so.conf.d/opencv.conf'
bash 复制代码
sudo ldconfig
bash 复制代码
sudo vim /etc/bash.bashrc  
bash 复制代码
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig  
export PKG_CONFIG_PATH  
bash 复制代码
source /etc/bash.bashrc  
bash 复制代码
sudo updatedb  

测试

bash 复制代码
cd opencv-3.4.1/samples/cpp/example_cmake

cmake .
make
./opencv_example
bash 复制代码
cd /home/syh/temp/opencv2/helloworld

vim CMakeLists.txt

cmake .
make
./helloworld
bash 复制代码
vim zz.cpp
vim 复制代码
#include "opencv2/core.hpp"
#include "opencv2/imgproc.hpp"
#include "opencv2/highgui.hpp"
#include "opencv2/videoio.hpp"
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
    cout << "Built with OpenCV " << CV_VERSION << endl;
    Mat image = imread("000001.JPEG");
    cout << image.cols <<"," << image.rows << endl;

    resize(image, image, Size(360, 202));

    cout << "after resize:" << endl;
    cout << image.cols <<"," << image.rows << endl;
    cvtColor(image, image, CV_RGB2GRAY);
}
bash 复制代码
vim CMakeLists.txt
vim 复制代码
# cmake needs this line
cmake_minimum_required(VERSION 2.8)

# Define project name
project(helloworld_project)

# Find OpenCV, you may need to set OpenCV_DIR variable
# to the absolute path to the directory containing OpenCVConfig.cmake file
# via the command line or GUI
find_package(OpenCV REQUIRED)

# If the package has been found, several variables will
# be set, you can find the full list with descriptions
# in the OpenCVConfig.cmake file.
# Print some message showing some of them
message(STATUS "OpenCV library status:")
message(STATUS "    version: ${OpenCV_VERSION}")
message(STATUS "    libraries: ${OpenCV_LIBS}")
message(STATUS "    include path: ${OpenCV_INCLUDE_DIRS}")

if(CMAKE_VERSION VERSION_LESS "2.8.11")
  # Add OpenCV headers location to your include paths
  include_directories(${OpenCV_INCLUDE_DIRS})
endif()

# Declare the executable target built from your sources
add_executable(helloworld zz.cpp)

# Link your application with OpenCV libraries
target_link_libraries(helloworld PRIVATE ${OpenCV_LIBS})

Error

bash 复制代码
undefined reference to TIFFReadEncodedStrip@LIBTIFF_4.0'

# 解决方案
sudo mv /usr/local/anaconda3/lib/libtiff.so* ~/temp
相关推荐
limenga10240 分钟前
TensorFlow Keras:快速搭建神经网络模型
人工智能·python·深度学习·神经网络·机器学习·tensorflow
KG_LLM图谱增强大模型3 小时前
Vgent:基于图的多模态检索推理增强生成框架GraphRAG,突破长视频理解瓶颈
大数据·人工智能·算法·大模型·知识图谱·多模态
AKAMAI3 小时前
企业如何平衡AI创新与风险
人工智能·云原生·云计算
TDengine (老段)4 小时前
优化 TDengine IDMP 面板编辑的几种方法
人工智能·物联网·ai·时序数据库·tdengine·涛思数据
数据的世界015 小时前
Visual Studio 2026 正式发布:AI 原生 IDE 与性能革命的双向突破
ide·人工智能·visual studio
shayudiandian6 小时前
深度学习中的激活函数全解析:该选哪一个?
人工智能·深度学习
视界先声6 小时前
如何选择合适的养老服务机器人
人工智能·物联网·机器人
RPA机器人就选八爪鱼6 小时前
RPA财务机器人:重塑财务效率,数字化转型的核心利器
大数据·数据库·人工智能·机器人·rpa
腾讯WeTest7 小时前
Al in CrashSight ——基于AI优化异常堆栈分类模型
人工智能·分类·数据挖掘