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 次查看(过去 30 天)
I think i should fit gaussian to find the peaks. Please comment and help

回答(1 个)

Etsuo Maeda
Etsuo Maeda 2019-1-11
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

类别

Help CenterFile Exchange 中查找有关 Matched Filter and Ambiguity Function 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by