博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【论文研读】Ultrasound related paper (multi-task, detection)
阅读量:2089 次
发布时间:2019-04-29

本文共 1338 字,大约阅读时间需要 4 分钟。

Less is More: Simultaneous View Classifification and Landmark Detection for Abdominal Ultrasound Images

Author:Zhoubing Xu,..., Shaohua Zhou

idea:提出了一个多任务框架:1)超声视图分类,2)腹部长短抽的landmark detection

  1. 网络框架:
    1. Encoder:ResNet50The first convolutional layer is modifified to take a single channel input. While the fifirst two residual blocks are shared across all tasks for low level feature extraction, two copies of the 3rd and 4th residual blocks are used, one for view classifification, and the other for landmark detection.
    2. On each level of skip connection between encoder and decoder, we append Global Convolutional Network (GCN) [9] and boundary refifinement modules to capture larger receptive fields.
  2. 四个Loss:
    1. Loss_CE:Cross Entropy Loss
    2. Loss_L2:Regression Loss,热力图回归,求距离
    3. Loss_cc:Landmark Location Error。采用热力图加权的方式得到predicted landmark,S_i代表横坐标,T_i代表纵坐标。                   
    4. Loss_AD:判断一个batch中pred和True是否是来自同一张图

 

Fully convolutional regression network for accurate detection of measurement points (DLMIA 2017)

Author:Michal Sofka, Fausto Milletari, Jimmy Jia, and Alex Rothberg

解决问题:Accurate automatic detection of measurement points in ultrasound video sequences

方法:1)用Fully Convolutional Neural Network (FCN) regress the point locations;2)a Long Short-Term memory cells which processes several previous frames in order to refine the estimate in the current frame.

转载地址:http://ufeqf.baihongyu.com/

你可能感兴趣的文章
java学习总结之文件操作--ByteArrayOutputStream的用法
查看>>
Java生成和操作Excel文件
查看>>
Java的三种代理模式
查看>>
java静态代理与动态代理简单分析
查看>>
JTS Geometry关系判断和分析
查看>>
阿里巴巴十年Java架构师分享,会了这个知识点的人都去BAT了
查看>>
idea如何显示git远程与本地的更改对比?
查看>>
SDO_GEOMETRY结构说明
查看>>
oracle 的 SDO_GEOMETRY
查看>>
往oracle中插入geometry的两种方式
查看>>
Oracle Spatial中的Operator操作子 详细说明
查看>>
Oracle Spatial中SDO_Geometry详细说明
查看>>
oracle 聚合函数 LISTAGG ,将多行结果合并成一行
查看>>
Oracle列转行函数 Listagg() 语法详解及应用实例
查看>>
LISTAGG函数的用法
查看>>
Oracle Spatial操作geometry方法
查看>>
IDEA类和方法注释模板设置(非常详细)
查看>>
Java程序初始化的顺序
查看>>
Dubbo和Spring结合配置文件内容解析为bean的过程
查看>>
fastJson注解@JSONField使用的一个实例
查看>>