Target detection - yolo series algorithm

yolo algorithm

insert image description here
insert image description here

yolo algorithm idea

insert image description here

Yolo's network structure

insert image description here

network input

insert image description here

network output

The output is a tensor of 7*7*30

7x7 grid

insert image description here
insert image description here

30-dimensional vector

insert image description here
The pr(object) of an image center point grid is 1
insert image description here

Yolo model training

Construction of training samples

insert image description here
insert image description here

loss function

insert image description here
insert image description here

model training

insert image description here

model prediction

insert image description here

yoloSummary

insert image description here

yoloV2

insert image description here

Prediction is more accurate (better)

insert image description here

batch normalization

insert image description here

Fine-tune a classification model using high-resolution images

insert image description here
insert image description here

Sample Anchor Boxes

insert image description here

Cluster extraction anchor scale

insert image description here
yoloV2 selects the five sizes of the cluster as the anchor box

Prediction of bounding box position

insert image description here
insert image description here

Fine-grained feature fusion

insert image description here
insert image description here

multi-scale training

insert image description here
insert image description here

Faster

insert image description here
insert image description here
insert image description here

Identify objects more

insert image description here

yoloV3

insert image description here

Algorithm Introduction

insert image description here

multi-scale detection

insert image description here
insert image description here
FPN: Target detection after shallow features are fused with deep features

Network Model Structure

insert image description here
insert image description here
insert image description here

prior box

insert image description here

logistic regression

insert image description here

Input and output of yoloV3 model

insert image description here
insert image description here

yoloV4

insert image description here
insert image description here
insert image description here

Guess you like

Origin blog.csdn.net/qq_40527560/article/details/131755943