当前位置: 首页 > news >正文

酒类网站建设方案案中山网站建设公司排名

酒类网站建设方案案,中山网站建设公司排名,手机短视频网站的建设,网站公告栏代码Title 题目 I 2U-Net: A dual-path U-Net with rich information interaction for medical image segmentation I 2U-Net#xff1a;具有丰富信息交互的双路径 U-Net 用于医学图像分割 01 文献速递介绍 在计算机视觉领域#xff0c;医学图像分割是一个主要挑战#xff… Title 题目 I 2U-Net: A dual-path U-Net with rich information interaction for medical image segmentation I 2U-Net具有丰富信息交互的双路径 U-Net 用于医学图像分割 01 文献速递介绍 在计算机视觉领域医学图像分割是一个主要挑战例如皮肤镜图像中的皮肤病变分割Dai等2022年、结肠镜图像中的息肉分割Fan等2020年、磁共振图像中的脑肿瘤分割Wang等2021年以及腹部CT图像中的多器官分割Cao等2021年。这些分割结果提供了关于解剖区域的宝贵信息有助于详细分析和帮助医生准确描绘损伤、监测疾病进展并评估适当治疗的需求。随着对智能医学图像分析需求的增加精确而稳健的分割方法变得越来越重要。 为了满足这一需求许多具有编码器-解码器结构的深度学习方法被提出Ramesh等2021年。它们的编码器通常用于提取图像特征解码器则用于将提取的特征恢复到原始图像大小并输出最终的分割结果。作为编码器-解码器网络的代表U-NetRonneberger等2015年在许多医学分割任务中证明了其有效性这启发了一系列高效的U形分割网络的发展如Attention U-NetOktay等2018年、Res-UNetXiao等2018年和DR-UNetLi等2019年。 尽管这些U形网络在医学图像分割中被广泛使用但仍存在一个不可忽视的问题即对具有模糊边界和不规则形状病变的分割结果不理想。这一结果主要归因于两个因素iU形网络编码器提取的特征几乎被抽象语义信息所占据失去了大量详细内容描述ii尽管解码器中的跳跃连接可以融合低分辨率和高分辨率信息以改善特征学习但受限于低分辨率和高分辨率特征之间的较大语义差距导致特征图模糊和分割结果不佳Pang等2019年。如图1所示随着网络加深详细信息如边界、形状和纹理逐渐减少这显然对密集预测任务不利 Abstract 摘要 尽管 U 形网络在许多医学图像分割任务中取得了显著的性能但它们很少建模层次化层之间的顺序关系。这一弱点使得当前层难以有效利用前一层的历史信息导致对具有模糊边界和不规则形状病变的分割结果不尽如人意。为了解决这一问题我们提出了一种新颖的双路径 U-Net称为 I2U-Net。新提出的网络通过双路径之间的丰富信息交互鼓励历史信息的重复使用和重新探索使得深层可以学习更全面的特征既包含低层次的详细描述又包含高层次的语义抽象。具体来说我们引入了一个多功能信息交互模块MFII它通过统一设计可以建模跨路径、跨层次和跨路径-层次的信息交互使得所提出的 I2U-Net 表现类似于展开的 RNN并享有建模时间序列信息的优势。此外为了进一步选择性地和敏感地整合双路径编码器提取的信息我们提出了一种全面信息融合和增强模块HIFA可以有效地连接编码器和解码器。在包括皮肤病变、息肉、脑肿瘤和腹部多器官分割在内的四个具有挑战性的任务上进行的广泛实验一致显示所提出的 I2U-Net 在性能和泛化能力上均优于其他最先进的方法。 Method 方法 Chen et al. (2017) revealed that residual connection (He et al.,enables feature re-usage while dense connection (Huang et al.,encourages new feature exploration, which are both importantfor learning valuable representations. They also found that while residual and dense connections differ on the surface, both of them aremanifestations of a higher-order recurrent neural network (HORNN).Motivated by these, we propose a dual-path U-Net for medical imagesegmentation, dubbed I2U-Net. One path of I2U-Net is dedicated toimage feature information, while the other is to hidden state information with shared convolutional kernels along the depth. This structureallows I2U-Net to work similarly to an unfolded RNN (LeCun et al.,2015; Zhao et al., 2021) and enjoy its advantage of modeling time sequence information. It also allows I2U-Net to inherit the advantages ofresidual and dense connections, enabling convenient re-usage of historyfeatures and flexible exploration of new features with an acceptablecomputation cost. Chen等人2017年揭示了残差连接He等2016年能够实现特征的重复使用而密集连接Huang等2017年则鼓励新特征的探索这两者对于学习有价值的表示是非常重要的。他们还发现尽管在表面上残差连接和密集连接有所不同但它们都是高阶递归神经网络HORNN的表现形式。 受此启发我们提出了一种用于医学图像分割的双路径 U-Net名为 I2U-Net。I2U-Net 的一个路径专注于图像特征信息而另一个路径专注于隐藏状态信息并且沿着深度使用共享的卷积核。这种结构使得 I2U-Net 可以类似于展开的RNNLeCun等2015年Zhao等2021年享受其建模时间序列信息的优势。同时这种结构也让 I2U-Net 继承了残差连接和密集连接的优势能够方便地重复使用历史特征并以可接受的计算成本灵活探索新特征。 Conclusion 结论 This paper proposed a dual-path U-net (dubbed I2U-Net) with richinformation interaction for medical image segmentation, which workssimilarly to an unfolded RNN and enjoys the advantage of modeling thetime-sequential relationship between different network layers. Specifically, I2U-Net developed a multi-functional information interactionmodule (MFII) that enables the current layer to effectively re-use andre-explore the previous layers’ historical information, allowing deeplayers to learn more comprehensive features that contain both low-leveldetail description and high-level semantic abstraction. Moreover, I2UNet developed a holistic information fusion and augmentation module(HIFA) to sensitively augment the information extracted by the dualpath encoder. The proposed HIFA merges the advantage of local andglobal operation and can flexibly learn discriminative representationfrom a wider frequency range, bridging the encoder and the decodermore efficiently. Thanks to these creative designs, extensive experiments on four challenging tasks, including skin lesion, polyp, braintumor, and abdominal multi-organ segmentation, consistently provedthat the proposed I2U-Net has excellent segmentation performance andgeneralization ability. 本文提出了一种具有丰富信息交互的双路径U-Net称为I2U-Net用于医学图像分割其工作原理类似于展开的RNN并享有建模不同网络层之间时间序列关系的优势。具体而言I2U-Net开发了一个多功能信息交互模块MFII使当前层能够有效地重复使用和重新探索前几层的历史信息从而使深层能够学习到更全面的特征既包括低级别的详细描述也包括高级别的语义抽象。此外I2U-Net开发了一个全面的信息融合和增强模块HIFA以敏感地增强双路径编码器提取的信息。所提出的HIFA融合了局部和全局操作的优势可以灵活地从更广泛的频率范围学习判别性表示更有效地连接编码器和解码器。由于这些创新设计针对皮肤病变、息肉、脑肿瘤和腹部多器官分割等四项挑战性任务的广泛实验一致表明所提出的I2U-Net具有出色的分割性能和泛化能力。 Figure 图 Fig. 1. Heat maps in four different layers of the U-Net. 图1. U-Net 中四个不同层次的热力图。 Fig. 2. Illustration of the proposed I2U-Net. I2U-Net is a dual-path U-Net with rich information interaction. One path uses medical images as input to extract image featureinformation like traditional U-Nets. In contrast, the other path uses zero-initialized learnable matrix as input to store the hidden state information with shared convolutional kernelsalong the depth. This structure allows I2U-Net to work similarly to an unfolded RNN and enjoy its advantages, including modeling the time-sequential relationship of hierarchicallayers and making the most of historical information. 图2. 所提出的I2U-Net示意图。I2U-Net是一个具有丰富信息交互的双路径U-Net。其中一条路径使用医学图像作为输入提取像传统U-Net一样的图像特征信息。相比之下另一条路径使用零初始化的可学习矩阵作为输入在深度上使用共享的卷积核存储隐藏状态信息。这种结构使得I2U-Net可以类似于展开的RNN工作并享受其优势包括建模层次化层之间的时间序列关系充分利用历史信息。 Fig. 3. Illustration of the proposed MFII module. MFII enables multi-faceted information interaction among the dual paths of I2U-Net. MFII has three differentrepresentations: E-MFII, E-MFII, and D-MFII. E-MFII and E-MFII are used in theencoder stage. Their difference is that E-MFII* reduces the feature size by convolutionwith stride 2, while E-MFII keeps the size unchanged. D-MFII is used in the decoderstage, which increases the feature size by deconvolution. 图3. 所提出的MFII模块示意图。MFII模块实现了I2U-Net双路径之间的多方面信息交互。MFII具有三种不同的表示形式E-MFII、E-MFII和D-MFII。E-MFII和E-MFII用于编码器阶段。它们的区别在于E-MFII*通过步幅为2的卷积来减小特征大小而E-MFII保持大小不变。D-MFII用于解码器阶段通过反卷积来增加特征大小。 Fig. 4. Demonstration of the pyramid pooling and the multi-scale atrous convolution in HIFA module. 图4. HIFA模块中金字塔池化和多尺度空洞卷积的示意图。 Fig. 5. Sample results of skin lesion segmentation on ISIC2018 (first three rows)and PH2 (last two rows). The colors white, green, and red represent the correctsegmentation, under-segmentation, and over-segmentation, respectively. 图5. 在ISIC2018数据集上的皮肤病变分割示例结果前三行和在PH2数据集上的示例结果后两行。白色、绿色和红色分别表示正确分割、欠分割和过分割。 Fig. 6. Trend graph of IoU score in skin lesion segmentation task. 图6. 皮肤病变分割任务中IoU分数的趋势图。 Fig. 7. Sample results of polyp segmentation on five public datasets. The colorswhite, green, and red represent the correct segmentation, under-segmentation, andover-segmentation, respectively. 图7. 在五个公共数据集上的息肉分割示例结果。白色、绿色和红色分别表示正确分割、欠分割和过分割。 Fig. 8. Sample results of brain tumor segmentation. The union of red, blue, and greenregions represents the Whole Tumor(WT); the union of red and blue regions representsthe Tumor Core (TC); and the green region denotes the Enhancing Tumor (ET). 图8. 脑肿瘤分割的示例结果。红色、蓝色和绿色区域的并集代表整个肿瘤WT红色和蓝色区域的并集代表肿瘤核心TC绿色区域表示增强肿瘤ET。 Fig. 9. Sample results of abdominal multi-organ segmentation. 图9. 腹部多器官分割的示例结果。 Fig. 10. Segmentation results of different models in our system. 图10. 我们系统中不同模型的分割结果。 Fig. 11. Heat maps are obtained by the four encoder stages of the Baseline and ourI 2U-Net. 图11. 热力图由基线模型和我们的I2U-Net的四个编码器阶段获取。 Fig. 12. Heat maps are obtained by different bridges in our system. 图12. 我们系统中不同桥接方式获取的热力图。 Fig. 13. Influence of pre-trained parameters on IoU score of skin disease segmentation tasks. 图13. 预训练参数对皮肤病分割任务IoU分数的影响 Table 表 Table 1Compared with different methods for skin lesion segmentation. The best results are in bold 表1与不同的皮肤病变分割方法比较。最佳结果用粗体显示。 Table 2 Compared with different methods for polyp segmentation. The best results are in bold. 表2 不同息肉分割方法的比较。最佳结果用粗体显示。 Table 3Compared with different methods for brain tumor segmentation. WT, ET and TC represent Whole Tumor, Enhancing Tumor and Tumor Core sub-regions, respectively. The bestresults are in bold. 表3 不同脑肿瘤分割方法的比较。WT、ET和TC分别代表整个肿瘤、增强肿瘤和肿瘤核心子区域。最佳结果用粗体显示。 Table 4Compared with different methods for abdominal multi-organ segmentation. The best results are in bold. 表4 不同腹部多器官分割方法的比较。最佳结果用粗体显示。 Table 5Segmentation performances of different models in our system. The proposed I2U-Net is Model 4. The number of parameter and FLOPs are calculated based onthe 2D segmentation tasks. 表5 我们系统中不同模型的分割性能。提出的I2U-Net是模型4。参数数量和FLOPs是基于2D分割任务计算的。 Table 6 Segmentation performance of I2U-Net variants equipped with different bridges. The number of parameter and FLOPs are calculated based on the 2D segmentation tasks 表6 不同桥接方式装备的I2U-Net变体的分割性能。参数数量和FLOPs是基于2D分割任务计算的。 Table 7Segmentation performances of MFII and its two variants 表7 MFII及其两个变体的分割性能 Table 8Segmentation performance of different hidden state initialization methods. 表8 不同隐藏状态初始化方法的分割性能 Table 9Influence of pre-trained parameters on the performance of different methods. 表9 预训练参数对不同方法性能的影响
http://www.zqtcl.cn/news/761550/

相关文章:

  • 厦门建设网站制作中山市哪家公司做网站
  • 网站路径wordpress制作电商网站
  • 江西网站开发哪家专业装饰设计公司网站
  • 企业网站策划实训Wordpress 主题简化
  • 做网站点击挣钱不兰州工程建设信息网站
  • 网站说服力 营销...免费看片网站
  • 深圳招聘网站大全制作网站软件下载
  • 网站建设说明哈尔滨网站建设渠道
  • 一 网站建设管理基本情况设计类的网站
  • wordpress产品编辑如何优化wordpress
  • 网站后台更新缓存失败网站平台规划方案
  • 网站开发需求分析主要内容saas建站系统是怎么实现的
  • 做qq头像的网站有哪些wordpress怎么部署到虚拟linux服务器
  • 征求网站建设企业网站建设word
  • 市民服务中心网站建设小型公众号开发
  • 服装网站建设策划书论文基层建设刊物网站
  • 网站建设合同技术开发合同范本wordpress备份和还原
  • 物流信息平台网站建设一流本科专业建设点网站
  • 天猫网站建设的目标是什么装潢设计软件
  • 电商网站首页图片网站功能模块建设
  • 邮件服务器是不是网站服务器黄江网站建设公司
  • 科技部网站方案网页设计网站设计欣赏
  • 自贡建设机械网站网站策划与运营课程认知
  • 公司做网站该注意哪些廊坊seo
  • 网站开发目录高尔夫 wordpress
  • 三只松鼠网站建设不做网站做百家号
  • 石家庄网站关键词推广淘宝网站建设设计模板
  • 马鞍山什么房产网站做的好网速
  • 国外做兼职网站软件园二期做网站的公司
  • 淘客网站备案教程网页设计与制作教程十四五规划