how to process defocused particle in an image

3 visualizaciones (últimos 30 días)
khalid Elserfy
khalid Elserfy el 10 de Oct. de 2019
Respondida: darova el 11 de Oct. de 2019
hi
i am trying to process image of particle , but the issue is that i get defocused particle, so is there any method to adjust the focus for these defocused particles or remove them
i need to do image binarization after solving that issue to measure particle properties and trace theri velocity through successive frame
i attached image for binarized
  6 comentarios
darova
darova el 11 de Oct. de 2019
What is the difference between these two? Is one of them defocused?
11Untitled.png
khalid Elserfy
khalid Elserfy el 11 de Oct. de 2019
Yes, the faded one is defocused

Iniciar sesión para comentar.

Respuesta aceptada

darova
darova el 11 de Oct. de 2019
I have an idea:
  • Binarize image two times with different threshold
  • Separate each blob with bwlabel
  • Compare areas of intersected blobs. If A1/A2 < value then delete blob
img1.png
I = imread('123.png');
I1 = im2bw(I,graythresh(I)-0.3);
I2 = im2bw(I,graythresh(I)+0.0);
subplot(121)
imshow(I)
II = cat(3,I1*0,I2,I1);
subplot(122)
imshow(II)

Más respuestas (0)

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by