[gesture recognition car] ----- face recognition
It's a bloody lesson. It doesn't take long to complete the code, but the environment really spits people out. Here, let's talk about the stepped pits and solutions
Blogger's environment: ubuntu18.04 + pychar
When I was a freshman, the laboratory required to learn Tensorflow, and took over a project from the seniors. I was responsible for visu ...
Posted by tuneout on Tue, 19 Oct 2021 10:32:16 -0700
OpenCV_Image Processing
Grayscale Grayscale
import cv2 #opencv reads in BGR format
img=cv2.imread('cat.jpg')
img_gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
img_gray.shape
cv2.imshow("img_gray", img_gray)
cv2.waitKey(0)
cv2.destroyAllWindows()
HSV
H - Tone (main wavelength). S-Saturation (shadows of purity/color). V value (intensity)
cv2.imshow("hsv", ...
Posted by babybird11 on Sat, 16 Oct 2021 09:22:06 -0700
1+X computer vision textual research some knowledge points
Python
1. Python basic syntax
1.1 Python identifier
In Python, identifiers consist of letters, numbers, and underscores.
In Python, all identifiers can include English, numbers, and underscores (), but cannot begin with a number.
Identifiers in Python are case sensitive.
Identifiers that begin with underscores have special meaning. St ...
Posted by rulinus on Tue, 12 Oct 2021 20:01:30 -0700
(Beginner's introduction) "after learning opencv, mom won't worry that you won't be able to program images!" ~ learning and application of OpenCV image library programming
Practice compiling and installing the famous C/C + + image processing open source software library Opencv3.x under the Ubuntu 16 / 18 system.
Preface (installation steps of opencv)
Reference article: https://blog.csdn.net/forever_008/article/details/103625637 According to step by step, problems can be solved by Baidu
Tip: opencv has ...
Posted by OriginalBoy on Mon, 11 Oct 2021 19:34:48 -0700
Ubuntu 18.04 uninstalling and installing opencv
View the installed opencv version number
pkg-config --modversion opencv
pkg-config --modversion opencv4
opencv uninstall
sudo make uninstall
cd ..
sudo rm -r build
sudo rm -r /usr/local/include/opencv2 /usr/local/include/opencv /usr/include/opencv /usr/include/opencv2 /usr/local/share/opencv /usr/local/share/OpenCV /usr/share/opencv /usr/sh ...
Posted by m00nz00mer on Mon, 11 Oct 2021 12:45:25 -0700
Installation and use examples of OpenCV under Ubuntu
catalogue
1, Install OpenCV
1. Download installation package
1) Download OpenCV package
2) Installing opencv using cmake
4) Use make to create a compilation.
5) Installation
2. Configuration environment
2, Usage example -- picture
3, Usage example -- Video
1. Get camera permissions for virtual machine
2. Play video
3. Rec ...
Posted by jcantrell on Sun, 10 Oct 2021 01:49:51 -0700
Generating static library and dynamic library with gcc and image programming of opencv
catalogue 1, Generating static library and dynamic library files with gcc 2, Compilation of gcc and EFF files 3, Learning opencv image library programming 4, Summary
1, Generating static library and dynamic library files with gcc
Static library and dynamic library
Static library When the program is compiled, it will be connected to the obje ...
Posted by NINTHTJ on Sat, 09 Oct 2021 11:06:29 -0700
Ubuntu 18.04 installing OpenCV for image programming
The purpose of this paper is to compile and install the famous C/C + + image processing open source software library OpenCV3.4.12 on Ubuntu 18.04 system, and practice using OpenCV to process pictures and videos.
1, Compile and install OpenCV
1. Compile and install source code
Now there are some posts about installing OpenCV on the I ...
Posted by Hitman2oo2 on Fri, 08 Oct 2021 12:21:26 -0700
Install opencv and related operations based on Ubuntu
catalogue
1, Install opencv based on Ubuntu
2, Pictures of relevant operations
3, Video of relevant operation
4, Summary
5, References
1, Install opencv based on Ubuntu
1. Installation of opencv dependent environment
1.1 installation cmake
First, open the Ubuntu virtual machine, open the middle end, and enter the comma ...
Posted by rutin on Thu, 07 Oct 2021 11:22:45 -0700
Install opencv.3.4.15 under Linux and use it preliminarily
1, Introduction to opencv
OpenCV is a cross platform computer vision and machine learning software library based on BSD license (open source), which can run on Linux, Windows, Android and Mac OS operating systems. It is lightweight and efficient - it is composed of a series of C functions and a small number of C + + classes. It also provid ...
Posted by eskimo42 on Thu, 07 Oct 2021 01:46:13 -0700