Lane Departure Warning System Based on OpenCV

Lane Departure Warning development environment Ubuntu 16.04 OpenCV C++ Explanation of lane departure warning concept Lane Departure Warning System is called Lane Department warning system in English. Therefore, Lane Departure Warning System is referred to as LDW system in many models. Its main function is to remind the driver by m ...

Posted by messer on Sun, 05 Dec 2021 09:36:08 -0800

c++ opencv digital image processing: frequency domain filtering -- homomorphic filtering

preface Digital image processing c++ opencv (VS2019 opencv4.53) is continuously updated 1, Homomorphic filtering principle 1. Treatment principle (1) It is considered that the image f(x,y) consists of two parts: illumination component i(x,y), reflection component r(x,y): f ...

Posted by jemrys on Wed, 01 Dec 2021 17:43:29 -0800

SeetaFace2 Android platform compilation

SeetaFace2 Android platform compilation Project address: https://github.com/seetafaceengine/SeetaFace2 SeetaFace2 face recognition engine includes three core modules required to build a full-automatic face recognition system, namely: face detection module FaceDetector, face key point positioning module facelandmark and face feature extraction ...

Posted by iskawt on Wed, 01 Dec 2021 15:02:49 -0800

OpenCV learning notes 16_ Common edge detection algorithms

edge detection 1, Understanding of edge detection Edge generally refers to the region where the intensity of an image changes sharply in a certain part. There are generally two situations of strength change: Step change: The image value changes from low to high, and the image changes from dark to bright Peak change: From dark to light ...

Posted by ady01 on Wed, 01 Dec 2021 02:53:50 -0800

Chapter 10 filtering and convolution in learning OpenCV3

1. Preparatory knowledge 1.1 filtering, kernel and convolution The filter is an algorithm for calculating a new image I '(x,y) from an image I(x,y) according to the region near the pixel x,y. The template specifies the shape of the filter and the composition law of the values of pixels in this area, also known as "filter" or &qu ...

Posted by fr34k2oo4 on Tue, 30 Nov 2021 11:52:41 -0800

[opencv] image processing: boundary filling, image fusion, image threshold, numerical calculation

The main contents are: boundary filling cv2.copyMakeBorder(), numerical calculation   cv2.add(), change size   cv2.resize(), image fusion   cv2.addWeighted(), image threshold   cv2.threshold() Before we start, let's import the images, which we need in the img. An image display function is defined to facilitate the next dra ...

Posted by hybmg57 on Sun, 28 Nov 2021 12:41:50 -0800

[reprint handling] [opencv Python] Part IV image processing in opencv

[opencv Python] image processing part IV in opencv (VI) Part IV Image processing in OpenCV Opencv Python Chinese tutorial (handling) directory Original text http://www.linuxidc.com/Linux/2015-08/121400.html It is now invalid. This series is used for archiving, self-learning and will never be used for commercial purposes. 23 image transformatio ...

Posted by filn on Wed, 24 Nov 2021 01:10:31 -0800

Fundamentals of TCP/UDP programming

catalogue 1, Foreword (1) Socket socket (2) TCP (3) UDP 2, C # write a simple hello world program on the command line / console (1) C # create console application ​   (2) C # implements window output helloworld (3) C# console program uses UDP socket to send messages (4) C# window program uses TCP socket to send messages 1, Fore ...

Posted by geoldr on Mon, 22 Nov 2021 13:40:57 -0800

Opencv Basics

This article is a systematic arrangement of the opencv knowledge learned some time ago, mainly the arrangement and preservation of the code, which is convenient for future reference. This study mainly refers to the following articles: Python+OpenCV image processing (a full article). 1, Opencv Basics Image reading and display #Read pic ...

Posted by awpti on Sat, 20 Nov 2021 15:54:47 -0800

Image histogram for image processing

Image histogram for image processing What is image gray histogram? What is histogram equalization? What is histogram specification? Gray level histogram: mathematically speaking, the image histogram describes the statistical characteristics of each gray level of the image. It is a function of the gray value of the image and counts the number o ...

Posted by minus4 on Sat, 20 Nov 2021 10:54:47 -0800