Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image analysis - fiber recognition

I am new to image analysis. Do you know how to binarize this image in such a way to get the fibers only?

Fibers in the liquid

I have tried different threshold techniques etc, but I was not successful. I do not mind what tool I should use but I prefer .NET or Matlab.

PS: I did not know where to put my answer, so I put it at StackOverflow.

like image 651
Oldrich Svec Avatar asked Sep 12 '11 12:09

Oldrich Svec


1 Answers

The following may help a bit (Code in Mathematica):

DeleteSmallComponents[
 Binarize[
   LaplacianGaussianFilter[i, 2],
 .6],
 2]

enter image description here

Image composition to show the matching:

ImageCompose[i, {i1, .4}] // ImageAdjust

enter image description here

like image 114
Dr. belisarius Avatar answered Oct 04 '22 14:10

Dr. belisarius