Fit gaussian surface on 3D data
이전 댓글 표시
Using the following script and attached image tif file, I am trying to fit a gaussian surface on the image data. Is there something that I skip? The result soes not seem to be gaussian. I also tried using the following but couldnt obtain a meaningful result.
https://www.mathworks.com/matlabcentral/fileexchange/41938-fit-2d-gaussian-with-optimization-toolbox
I appreciate any help/comment in advence.
pixelsize = 0.65512E-6; %pixel conversion [m]
folder = pwd;
baseFileName = 'imageprocessing.tif';
fullFileName = fullfile(folder, baseFileName);
% info = imfinfo(baseFileName);
info = imfinfo(fullFileName);
grayImage = imread(fullFileName);
Z = grayImage./max(grayImage);
xx = [1:size(grayImage,1)]*pixelsize;
yy = [1:size(grayImage,2)]*pixelsize;
[X,Y]=meshgrid(xx,yy);
surf(X,Y,Z');shading interp
xlabel('x [\mu m]')
ylabel('y [\mu m]')
zlabel('Signal')
hold on
xpdf = X(:); ypdf = Y(:); zpdf = Z(:);
gaussianfit = fit([xpdf, ypdf], zpdf, 'a*exp(-( ((x-b)/c)^2 + ((y-d)/e)^2 ) ) + f', 'StartPoint', [400, 3, 50, 0, 40, 450])
plot(gaussianfit, [xpdf, ypdf], zpdf)
댓글 수: 3
The image itself doesn't look very Gaussian. It seems to consist of a bright and a dark lobe. Which lobe are you trying to fit?
load grayImage
imshow(grayImage,[])
Ali Aykut
2023년 5월 27일
a*exp(-( ((x-b)/c)^2 + ((y-d)/e)^2 ) )
It seems inadvisable to model the Gaussian term as separable in x and y, with only 5 parameters, instead of the more general 6-parameter model which has cross-terms,
Even if the object truly follows a separable Gaussian, a slight rotation of the imaging device would render the separable model invalid.
채택된 답변
추가 답변 (1개)
Image Analyst
2023년 5월 27일
1 개 추천
That's not 3-D data. That is 2-D data. How about you find the centroid with code I gave you before, then get the average radial profile, then fit a Guassian to that?
댓글 수: 2
Ali Aykut
2023년 5월 27일
Image Analyst
2023년 5월 27일
I don't think I recommended accumarray. What is the profile for any one point in time? Does it look like a Gaussian? If the profile is gaussian, then I think the histogram would also be Gaussian and you could also fit the histogram to a Gaussian. The surface shown in 'datasurface.png' looks slightly tilted so you might want to flatten/level it before, though I think my demo had a tilt allowed. If you had two different Gaussians, one for x and one for y, then you'd have to account for that with additional terms in the model.
I don't know what this dark thing represents but I think youi may be overthinking it by trying for more accuracy that the situation really needs. Let's say you were somehow able to get the two Gaussian parameter sets, one along each principal direction, then what would you do differently than if you just had the standard deviation of the thing assuming a single radially symmetric Gaussian like I suggested? Probably nothing different, so why make it more complicated than it needs to be?
카테고리
도움말 센터 및 File Exchange에서 Gaussian Mixture Models에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

