Competitions Notes

Kaggle 细胞核识别

Notes Details :一些Introduction, Related work...

Introduction

https://www.kaggle.com/competitions

Find the nuclei in divergent images to advance medical discovery (2 months to go)

目标要创建一个自动化细胞核检测算法,加快医学研究。官方给出了一些测试集和训练集,问题可以转化为在图像中找到特定的目标?

部分images数据如下:

nuclei-demo

(mask为细胞核的mask二值图)

关于题目更多的背景介绍可以看 这里

TODO

task 完成情况 comment
mask-rcnn环境搭建  
mask-rcnn training  
调参 进行中  
Data Augmentation 进行中  

待处理

  • [✔] 计算图像平均RGB值,并重新训练
  • [✔] Data Augmentation(需要解决images和多张masks不匹配问题)
  • [x] 修改最后两层的初始化方法(xavier)
  • [x] 修改网络结构,如删除最后两层再进行训练

关于Data Augmentation的可以参考这个:

http://keras-cn.readthedocs.io/en/latest/preprocessing/image/

Notes