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 visualizzazione (ultimi 30 giorni)
I think i should fit gaussian to find the peaks. Please comment and help

Risposte (1)

Etsuo Maeda
Etsuo Maeda il 11 Gen 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

Community Treasure Hunt

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

Start Hunting!

Translated by