I have a microsocopy image which i am attaching. I have both .tif and .mat file for the image. I want the positions of all the bright spots there which correspond to the atoms.

1 visualización (últimos 30 días)
I think i should fit gaussian to find the peaks. Please comment and help

Respuestas (1)

Etsuo Maeda
Etsuo Maeda el 11 de En. de 2019
I = imread('input.png');
I = imadjust(I);
radius = [1, 10];
[centers, radii] = imfindcircles(I, radius);
imshow(I), hold on;
viscircles(centers, radii), hold off;
It may help you.
HTH

Categorías

Más información sobre Matched Filter and Ambiguity Function en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by