专栏名称: 机器学习研究会
机器学习研究会是北京大学大数据与机器学习创新中心旗下的学生组织,旨在构建一个机器学习从事者交流的平台。除了及时分享领域资讯外,协会还会举办各种业界巨头/学术神牛讲座、学术大牛沙龙分享会、real data 创新竞赛等活动。
目录
相关文章推荐
爱可可-爱生活  ·  【[476星]Volcengine ... ·  3 天前  
AI创业伙伴  ·  Manus和DeepSeek差别是什么?全能 ... ·  3 天前  
AI创业伙伴  ·  Manus和DeepSeek差别是什么?全能 ... ·  3 天前  
宝玉xp  ·  转发微博-20250307131223 ·  3 天前  
爱可可-爱生活  ·  突破传统限制的十亿级语料库搜索利器 ... ·  3 天前  
爱可可-爱生活  ·  [CL]《Process-based ... ·  3 天前  
51好读  ›  专栏  ›  机器学习研究会

【推荐】2017深度学习语义分割指南

机器学习研究会  · 公众号  · AI  · 2017-07-06 21:35

正文



点击上方 “机器学习研究会” 可以订阅哦


摘要

转自:爱可可-爱生活

At Qure, we regularly work on segmentation and object detection problems and we were therefore interested in reviewing the current state of the art.

In this post, I review the literature on semantic segmentation. Most research on semantic segmentation use natural/real world image datasets. Although the results are not directly applicable to medical images, I review these papers because research on the natural images is much more mature than that of medical images.

Post is oraganized as follows: I first explain the semantic segmentation problem, give an overview of the approaches and summarize a few interesting papers.

In a later post, I’ll explain why medical images are different from natural images and examine how the approaches from this review fare on a dataset representative of medical images.


What exactly is semantic segmentation?

Semantic segmentation is understanding an image at pixel level i.e, we want to asign each pixel in the image an object class. For example, check out the following images.

Left : Input image. Right : It's semantic segmentation. Source.

Apart from recognising the bike and the person riding it, we also have to delineate the boundaries of each object. Therefore, unlike classification, we need dense pixel-wise predictions from our models.

VOC2012 and MSCOCO are the most important datasets for semantic segmentation.


What are the different approaches?

Before deep learning took over computer vision, people used approaches like TextonForest and Random Forest based classifiers for semantic segmentation. As with image classification, convolutional neural networks (CNN) have had enormous success on segmentation problems.

One of the popular initial deep learning approaches was patch classification where each pixel was separately classified into classes using a patch of image around it. Main reason to use patches was that classification networks usually have full connected layers and therefore required fixed size images.







请到「今天看啥」查看全文