Solution for installing opencv 3.2.0 in Ubuntu 18.04

Solution for installing opencv 3.2.0 in Ubuntu 18.04

Download opencv.zip

Install the dependencies ahead of time.

Update the download source first. Using the 17.04 source can solve the problem of not finding libjasper.dev in 18.04.

ref
https://stackoverflow.com/questions/43484357/opencv-in-ubuntu-17-04
libjasper-dev cannot be installed errorE: unable to locate libjasper-dev

Workaround

sudo add-apt-repository "deb http://security.ubuntu.com/ubuntu xenial-security main"
sudo apt update
sudo apt install libjasper1 libjasper-dev

Error:

-- Checking for module 'gstreamer-base-1.0'
-- No package 'gstreamer-base-1.0' found
-- Checking for module 'gstreamer-video-1.0'
-- No package 'gstreamer-video-1.0' found
-- Checking for module 'gstreamer-app-1.0'
-- No package 'gstreamer-app-1.0' found
-- Checking for module 'gstreamer-riff-1.0'
-- No package 'gstreamer-riff-1.0' found
-- Checking for module 'gstreamer-pbutils-1.0'
-- No package 'gstreamer-pbutils-1.0' found
-- Checking for module 'gstreamer-base-0.10'
-- No package 'gstreamer-base-0.10' found
-- Checking for module 'gstreamer-video-0.10'
-- No package 'gstreamer-video-0.10' found
-- Checking for module 'gstreamer-app-0.10'
-- No package 'gstreamer-app-0.10' found
-- Checking for module 'gstreamer-riff-0.10'
-- No package 'gstreamer-riff-0.10' found
-- Checking for module 'gstreamer-pbutils-0.10'
-- No package 'gstreamer-pbutils-0.10' found

Workaround

ref
https://stackoverflow.com/questions/37678324/compiling-opencv-with-gstreamer-cmake-not-finding-gstreamer

Install

sudo apt install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev

Report an error

--CUDA detected: 9.0
-- CUDA NVCC target flags: -gencode;arch=compute_20,code=sm_20;-gencode;arch=compute_30,code=sm_30;-gencode;arch=compute_35,code=sm_35;-gencode;arch=compute_37,code=sm_37;-gencode;arch=compute_50,code=sm_50;-gencode;arch=compute_52,code=sm_52;-gencode;arch=compute_60,code=sm_60;-gencode;arch=compute_61,code=sm_61;-D_FORCE_INLINES
-- Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off
-- Could NOT find Atlas (missing: Atlas_CLAPACK_INCLUDE_DIR Atlas_CBLAS_LIBRARY Atlas_BLAS_LIBRARY Atlas_LAPACK_LIBRARY)
-- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file

Summarize

The above is the solution for installing opencv 3.2.0 on Ubuntu 18.04 introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Install MySQL 5.7 on Ubuntu 18.04
  • How to install MySQL on Ubuntu 18.04 (linux)
  • A simple tutorial on installing Sogou Pinyin in Ubuntu 18.04
  • Installation of Ubuntu 18.04 reports: failed to load ldlinux.c32 and its solution steps

<<:  How to reset the initial value of the auto-increment column in the MySQL table

>>:  How to use vue-bootstrap-datetimepicker date plugin in vue-cli 3

Recommend

Example of adding music video to HTML page

1. Video tag Supports automatic playback in Firef...

Example of how to set up a Linux system to automatically run a script at startup

Preface Hello everyone, I am Liang Xu. At work, w...

Summary of 3 ways to lazy load vue-router

Not using lazy loading import Vue from 'vue&#...

Detailed explanation of binary and varbinary data types in MySQL

Preface BINARY and VARBINARY are somewhat similar...

Native js realizes the drag and drop of the nine-square grid

Use native JS to write a nine-square grid to achi...

How to use & and nohup in the background of Linux

When we work in a terminal or console, we may not...

Tomcat8 uses cronolog to split Catalina.Out logs

background If the catalina.out log file generated...

Analysis of the solution to Nginx Session sharing problem

This article mainly introduces the solution to th...

Introduction to html form control disabled attributes readonly VS disabled

There are two ways to disable form submission in ...

JavaScript regular verification password strength implementation method

exhibit design Password strength analysis The pas...

Vue implements horizontal beveled bar chart

This article shares the specific code of Vue to i...

Some tips on speeding up the development of WeChat mini-programs

1. Create a page using app.json According to our ...