Detailed explanation of Shifted Window algorithm

Swin Transformer Author: elfin Source: Swin Original link: https://www.cnblogs.com/dan-baishucaizi/p/14661164.html catalogue abstract1. Introduction2. Related work 2.1 CNN and its variants2.2 self attention mechanism based on backbone structure2.3 self attention / transformers as a supplement to CNNs2.4 Transformer based b ...

Posted by Frozenlight777 on Tue, 18 Jan 2022 04:30:50 +0100

Color and moving object recognition system

Color and moving object recognition system 1. Development tools Python version: Anaconda's Python environment version 3.8 Development software: pycham Community Edition Recognition model: deep learning model, general learning model Related modules: opencv python = 3.4.8.29 module 2. Environmental construction Install Anaconda and add the path t ...

Posted by phpvolution on Mon, 17 Jan 2022 11:05:04 +0100

Image morphology

//Image morphology void COpenCVTestDlg::OnCbnSelchangeComboMorphology() { if (m_comboMorphology.GetCurSel() == -1) return; if (!m_srcMatImg.empty()) { //Define type int MorphologyType = MORPH_RECT; //Define size int MorphlogySize = 3; //Call ...

Posted by webtech123 on Sun, 16 Jan 2022 12:17:59 +0100

TensorFlow realizes Denoising Autoencoder

Denoising autoencoder (DAE) Before introducing the denoising autoencoder (DAE), first introduce an example of the use scene of DAE. When we take photos at night or in other dark environments, our photos are always filled with a lot of noise, which seriously affects the image quality, and the purpose of DAE is to remove the noise in these i ...

Posted by kcpaige89 on Sun, 16 Jan 2022 04:13:03 +0100

GCTNet attention mechanism of gated channel transformation for visual recognition

Gated Channel Transformation for Visual Recognition (GCT) This article is a reproduction of an Attention article invested by Baidu & Syndney in CVPR2020. It proposes a general and lightweight change unit, which combines normalization method and Attention mechanism, which is easy to analyze the relationship between channels (competition or ...

Posted by evilMind on Fri, 14 Jan 2022 13:08:53 +0100

After combing the VDO-SLAM source code in two tones

The first tone is to write so much. The second tone is to sort out some contents of global optimization, but it is estimated that it will take some time. This record is purely personal understanding. If there is any difference, welcome to discuss ~ as for the part of using optical flow for dynamic object tracking in the paper, I am not sure whe ...

Posted by stevel on Fri, 14 Jan 2022 04:46:59 +0100

Image matching and stitching using sift feature extraction

Image fusion Compilation environment: Python 3.0 8.3,OpenCV4.5.2, Project code: https://download.csdn.net/download/zao_chao/20554332 Scale invariant feature transform (SIFT) is used for image matching and stitching. The image registration process based on SIFT point features includes feature extraction, feature description, feature matchin ...

Posted by gte604j on Thu, 13 Jan 2022 20:28:44 +0100

"Pilot group" face recognition aircraft war

Face recognition aircraft war Do you have the following problems: The college has a garden party. Do you want to find an interactive game to show the characteristics of information specialty?The oars set up the stage to recruit new people. They yelled hard and sent out a lot of leaflets. Can't the atmosphere be lively?After watching the liv ...

Posted by NewBob on Thu, 13 Jan 2022 13:08:14 +0100

YOLOV5: Training Model on local computer

Related articles 1, Python getting started environment configuration: Anaconda3 and pycharm installation tutorial 2, labelimg application: dataset Tags 3, Build a pytoch environment under Windows (CPU version) 4, Building a pytoch environment under Windows (super detailed) 1, YOLOV5 environment construction (official requirements: ...

Posted by theinfamousmielie on Thu, 13 Jan 2022 10:00:59 +0100

[Matlab image denoising] median + wavelet + Wiener + filter image denoising [including GUI source code phase 616]

1, Introduction to image denoising and filtering 1 image denoising 1.1 definition of image noise Noise is an important factor that interferes with the visual effect of image. Image denoising refers to the process of reducing noise in image. There are three kinds of noise classification: additive noise, multiplicative noise and quantization noi ...

Posted by Hiro on Thu, 13 Jan 2022 06:38:50 +0100