Judgment of connected domain of binary image in Matlab

There is the concept of connected domain in mathematics, image processing and other fields. Today, I will tell you about the functions that extract the connected domain in matlab? 1, bwlabel function bwlabel function is the simplest function to be introduced today. Its usage is as follows: % Binary image data BW = [ 0 1 0 0 0 ...

Added by mightyworld.com on Mon, 29 Nov 2021 02:48:43 +0200

FPGA learning record (10) < fixed point positioning of filter and use of Beyond compare >

Written by @hzj //JinXing Project #2021.11.21 V1.0 1. Fixed point positioning of filter and use of Beyond compare (1) Why fixed-point positioning? 1. Fixed point: the existence of fixed point is due to the binary operation inside FPGA. The decimal point (floating-point data) in the actual operation cannot be accurately represented by bi ...

Added by mosherben on Mon, 22 Nov 2021 23:47:16 +0200

Design and implementation of neural network algorithm for handwritten digit recognition in pattern recognition experiment 4

Experiment 4 design and implementation of neural network algorithm for handwritten digit recognition 1, Experimental purpose By learning BP neural network technology, handwritten digits are recognized, and the recognition rate is improved by structure based recognition method and template matching method. 2, Experimental equipment PC matlab so ...

Added by ayed on Mon, 22 Nov 2021 22:27:35 +0200

[python drawing] common settings of Matplotlib

catalogue Common drawing property settings matplotlib supported drawing symbols (Makers) Line Styles supported by matplotlib Color abbreviations supported by matplotlib (Colors) Comparison of Chinese and English names of Windows fonts Object oriented drawing Configure the properties of the object   Draw multiple subgraphs Artist o ...

Added by stevehossy on Mon, 22 Nov 2021 04:36:49 +0200

A brief study of Python matplotlib.pyplot Library

Pyplot is a sub Library of Matplotlib, which provides a drawing API similar to MATLAB. Pyplot is a commonly used drawing module, which can easily allow users to draw 2D charts. Pyplot contains a series of related functions of drawing functions. Each function will make some modifications to the current image, such as marking the image, generatin ...

Added by validkeys on Fri, 19 Nov 2021 13:20:40 +0200

[emotion recognition] speech emotion recognition based on PNN probabilistic neural network [Matlab 544]

1, PNN probabilistic neural network speech emotion recognition 1 speech emotion recognition system In the speech emotion recognition system, the recorded corpus contains five different emotions of five actors, namely happiness, fear, sadness, anger and neutrality. At the same time, the corpus is divided into training set and test set. The desi ...

Added by teebo on Fri, 19 Nov 2021 12:45:48 +0200

Day10--MATLAB programming

MATLAB is a powerful software and is widely used in the field of automatic control. This series of blog posts will be based on control system simulation. Refer to the book MATLAB/Simulink and control system simulation. This series of blog posts and the author's automatic control theory (postgraduate entrance examination) complement each other. ...

Added by JC99 on Thu, 18 Nov 2021 17:07:57 +0200

Manipulator modeling practice - Seventh degree polynomial trajectory planning

Next, I will use three examples to learn the trajectory planning of seventh degree polynomial with you. The first one has a problem and we look forward to solving it together. Is it just caused by the solution of inverse solution? The first model is the GLUON-6L3 manipulator in the previous paper clear;clc;close all; % DH Modeling part theta, ...

Added by signs on Tue, 09 Nov 2021 12:57:22 +0200

The noisy signal is processed by mean filtering

Using matlab to filter the noisy sine wave signal This is my little job. There may be all kinds of small errors in the program. Firstly, the sinusoidal signal is generated, different signal-to-noise ratios are set, and the moving average filter is designed to filter the noisy signal. For a fixed signal-to-noise ratio, the influence of the order ...

Added by BZorch on Sun, 24 Oct 2021 14:36:42 +0300

Matlab realizes sift feature detection and feature point matching of two images (D. Lowe)

1, Introduction to sift algorithm Scale invariant feature transform (SIFT) is a computer vision algorithm used to detect and describe local features in images. It looks for extreme points in spatial scale and extracts their position, scale and rotation invariants. This algorithm was published by David Lowe in 1999 and summarized in 2004. Its ...

Added by Rheves on Sat, 23 Oct 2021 05:12:38 +0300