【发布时间】:2016-11-30 09:44:11
【问题描述】:
我有需要分割的相差显微镜图像。由于背景中的对象之间缺乏对比,似乎很难分割它们(图 1)。我使用函数adapthisteq 来增加单元格的可见性(图2)。有什么办法可以改善细胞的分割?
normalImage = imread(fileName);
channlImage = rgb2gray(normalImage);
histogramEq = adapthisteq(channlImage,'NumTiles',[50 50],'ClipLimit',0.1);
saturateInt = imadjust(histogramEq);
binaryImage = im2bw(saturateInt,graythresh(saturateInt));
binaryImage = 1 - binaryImage;
normalImage - 原始图像 histogramEq - 增加可见性图像 binaryImage - 二值化图像
【问题讨论】:
标签: matlab image-processing image-segmentation contrast