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.
조회 수: 2 (최근 30일)
이전 댓글 표시
I think i should fit gaussian to find the peaks. Please comment and help
댓글 수: 0
답변 (1개)
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
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!