PspNet successfully trained Pascal VOC2012 data set and pit stepping record under MMsegmentation framework

Time: 2021 / 08 / 29 / 05:45:28 It's been a night. I can't believe I'm not sleepy and have the impulse to organize my blog. Just this week, the ability to stay up late suddenly broke through in the absence of a home for several nights. After one night, there is a world of difference. I can stay up night by night. Before, I was worried about my ...

Added by bizshop on Mon, 20 Dec 2021 13:14:06 +0200

[image encryption] image encryption and decryption based on chaotic system matlab source code, including GUI

Logistic chaos scrambling, not to mention how complex, is actually very simple. Logistic function is a dynamic system derived from population statistics, and its system equation form is as follows:  X(k+1) = u * X(k) * [1 - X(k)],(k=0,1,...,n) Don't worry about how you get this equation first. If you feel uncomfortable, go to Baidu yourself. ...

Added by pl_harish on Mon, 20 Dec 2021 02:01:22 +0200

OCR character recognition using tesseract (Java)

1. Background introduction There are few articles on tesseract for OCR character recognition on the network, and it has been a long time. It is inevitable to make mistakes when actually landing. The author has also taken many detours, so sort out a latest document for future generations to consult. 2. Scheme selection At the beginning, there ...

Added by imperialized on Mon, 20 Dec 2021 00:11:42 +0200

OpenCV (26) image segmentation -- distance transformation and watershed algorithm

catalogue 1, Basic theory 1. Thought 2. Principle 2, Process Step induction 1. Convert the original image to binary image 2. Open operation denoising 3. Determine the background area (expansion) (get the background / maximum pass area) 4. Determine foreground area (distance transformation) (separation) (get seed / foreground) 5. U ...

Added by LawsLoop on Sun, 19 Dec 2021 20:25:00 +0200

[face recognition] realize smile recognition based on HOG feature and SVM algorithm

1, HOG feature extraction principle    HOG feature extraction process can be divided into five parts: detection window, normalized image, calculating gradient, statistical histogram, normalization of gradient histogram, and obtaining HOG feature vector. Detection window:    HOG divides the image through window and blo ...

Added by sullyman on Sun, 19 Dec 2021 13:11:19 +0200

[Face recognition] matlab source code for face recognition based on PCA+LDA

1. Introduction 1 PCA 1.1 Data Dimension Reduction The methods of dimension reduction include principal component analysis (PCA), factor analysis (FA), and independent component analysis (ICA). Principal Component Analysis: Find a vector to minimize the sum of projections from each sample to that vector. Factor analysis: Independent component ...

Added by lizzardnub on Sun, 19 Dec 2021 12:06:14 +0200

Introduction to video and audio data processing: color space -- ffmpeg

summary This article briefly describes the color space conversion of libswscale based on FFmpeg; Libswscale realizes the conversion of various image pixel formats, such as the conversion between YUV and RGB; Here is a brief introduction to the use of libswscale's color space conversion. technological process Related processes Libswscale is ...

Added by SGTWhitelaw on Sat, 18 Dec 2021 00:05:21 +0200

How to use OpenCV to sort object contours

1 Introduction In the process of image processing, we often encounter some operations related to the object contour, such as calculating the perimeter area of the target contour. We can easily obtain the contour of each target by directly using the findContours function of Opencv, but after visualization, the order is disordered, as shown on t ...

Added by sbarros on Fri, 17 Dec 2021 18:27:55 +0200

[license plate recognition] license plate recognition based on BP neural network matlab source code, including GUI

I. Introduction 1 Overview BP (Back Propagation) neural network was proposed by the scientific research team headed by Rumelhart and McCelland in 1986. See their paper learning representations by Back Propagation errors published in Nature. BP neural network is a multilayer feedforward network trained by error back propagation algorithm. It i ...

Added by bumbar on Fri, 17 Dec 2021 03:50:41 +0200

[traffic sign recognition] Based on GUI SIFT traffic sign recognition [Matlab 864]

1, SIFT introduction SIFT, scale invariant feature transformation, is a description used in the field of image processing. This description has scale invariance and can detect key points in the image. It is a local feature descriptor. 1. Features of SIFT algorithm (1) It has good stability and invariance, can adapt to the changes of rotation, ...

Added by bslevin on Fri, 17 Dec 2021 01:09:39 +0200