Group Abstract Group Abstract

Message Boards Message Boards

1
|
11.6K Views
|
5 Replies
|
13 Total Likes
View groups...
Share
Share this post:

Extract cells from a microscope image without the lasso selection tool ?

Posted 10 years ago

img=enter image description here

Using the lasso selection tool enter image description here one can obtain this: enter image description here

Thank you so much. Amin.

POSTED BY: Amin C
5 Replies

@Henrik Schachner.Thank you so much. It really feels great to see how the Wolfram community works!

POSTED BY: Amin C

Hi all,

I do see that the problem is already solved. My remark is that a different approach for separating the cells could be in using WatershedComponents. If someone finds this useful, then credits have to go to @Shadi Ashnai, because this method is in perfect analogy to her great post recently. The Code:

ClearAll["Global`*"]
img0 =(* <cell image> *);
img1 = ColorToneMapping@ColorConvert[img0, "Grayscale"];
blur = ImageAdjust@Blur[img1, 30];
marker = Binarize[blur, .5];
ws = WatershedComponents[ColorNegate@blur, marker, Method -> "Basins"];
ImageAdd[Colorize[ws], img1]

which gives:

enter image description here

and finally:

masksNumbers = Union@Flatten[ws];
masks = Function[{n}, Map[If[# == n, 1, 0] &, ws, {2}]] /@ masksNumbers;
imgsParts = ImageCrop /@ (ImageMultiply[img1, Image[#]] & /@ masks)

results in:

enter image description here

Regard -- Henrik

POSTED BY: Henrik Schachner

Waw, You guys are amazing and so creative! Thank you so much!

POSTED BY: Amin C
POSTED BY: Marco Thiel

Hi Amin,

Looking at how you used lasso to segment the image into different parts, you may be able to automate the process using a program performing segmentation into components followed by component selection.

b = Binarize@img;
c = Closing[b, DiskMatrix[3]];
f = FillingTransform[c]; (* optional *)
comp = MorphologicalComponents[f];
parts = ComponentMeasurements[{comp, img}, "Image", #Count > 1000 &]

enter image description here

You may have to adjust the processing of your image to fine-tune your results. With the current set of parameter values, the approach in this post does not yield as perfect results as your lasso.

POSTED BY: Matthias Odisio
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard