Configuration of ZBar Library under Windows System (VS2015+OpenCV3.4.3+ZBar0.10)

Catalog step1 runtime environment step2 installation step3 configuration step4 test ZBar is an open source two-dimensional code (including barcode) decoder that recognizes barcodes/two-dimensional codes from video streams, image files, handheld scanners and video devices (such as cameras). It supp ...

Posted by crazylegseddie on Wed, 18 Sep 2019 19:53:58 -0700

Automatic recognition of multiple cross targets based on opencv and matlab and multiple matching of template matching

Camera calibration often uses calibration boards. The common calibration methods are teacher Zhang Zhengyou's plate calibration. The common calibration boards are chessboard calibration board and disc calibration board. But in many places, when u ...

Posted by lordofgore on Tue, 17 Sep 2019 06:01:45 -0700

Reading Notes-opencv-Polar Coordinate Transformation

Reading Notes-opencv-Polar Coordinate Transformation Principle analysis Polar coordinate transformation is used to correct circular objects in images or to include them in circular objects. Any point (x,y) on the xoy plane of Cartesian coordinate ...

Posted by binarynomad on Tue, 17 Sep 2019 02:11:56 -0700

Image Similarity Algorithms--Detailed Explanation of SIFT Algorithms

Links to the original text: https://blog.csdn.net/jiutianhe/article/details/39896931 <link href="https://csdnimg.cn/public/favicon.ico" rel="SHORTCUT ICON"> <title>Image similarity algorithm--SIFT Algorithm details - jiutianhe Co ...

Posted by JustLikeIcarus on Tue, 10 Sep 2019 05:59:04 -0700

Python slice operators ([],[:],[:],[:])

Links to the original text: https://blog.csdn.net/chengyq116 Python slice operators ([],[:],[:],[:]) []: An element in the access sequence, such as str_list[3], means accessing the fourth element in the str_list sequence. [:]: Accessing ...

Posted by AnarchistX on Thu, 29 Aug 2019 04:52:43 -0700

Target Tracking and Color Recognition (How inRange Finds Target HSV Value)

What can the inRange function do? Target tracking and color recognition. In the process of inRange application, it is important to find the appropriate HSV value. RGB is the most widely heard color space, which is also the natural representati ...

Posted by alvinho on Fri, 23 Aug 2019 06:54:08 -0700

Unmanned OpenCV Recognition of Pedestrians

chart In fact, everything starts with simplicity. Of course, driverless people need artificial intelligence to know their surroundings like the palm of their hand. Everything is mastered. We need to recognize all the objects around us as much as possible. Today's AI senses the surroundings by radar or by scanning the surround ...

Posted by evilMind on Sat, 10 Aug 2019 05:30:23 -0700

MFCC(Mel Cepstrum Coefficient) C++ Code Implementation (mel Feature Extraction Ported to librosa)

I. Introduction The abbreviation of Mel Frequency Cepstrum Coefficient is MFCC, which is widely used in automatic speech and speaker recognition. Mel frequency is based on the auditory characteristics of the human ear, and it has a non-linear relationship with the frequency of Hz. Mel Frequency Cepstr ...

Posted by kamurj on Thu, 01 Aug 2019 22:28:01 -0700

Open-CV Learning Notes-9.5 Template Matching

Template Matching (TM) is to find the area most similar to template image in an image. The principle of this method is simple and fast. It can be applied to many fields such as target recognition, target tracking and so on. The corresponding function in OpenCV is matchTemplate or cvMatchTemplate (refer ...

Posted by imawake on Tue, 30 Jul 2019 07:11:32 -0700

Target Tracking Practice Note 3

OpenTracker Compilation and Process Interpretation After OpenCV is installed and compiled, you can run several open source projects to see how it works, and then learn the essence from the theory. Learning should first learn to apply, explore theory in application, improve innovation, rather than all ...

Posted by neojordan on Wed, 24 Jul 2019 01:25:05 -0700