Skip to content

图像分割

分割主要有两种:

  • 语义分割 Semantic Segmentation
  • 实例分割 Instance Segmentation

原理

几乎所有 segmentation CNN 都是Encoder+Decoder:

输入图像
   ↓
Encoder (CNN提取特征)
   ↓
Decoder (上采样恢复尺寸)
   ↓
像素分类图

其中 decoder 通常使用:

  • Transposed Convolution
  • Upsampling

U-Net


评论 #