필터 지우기
필터 지우기

Gaussian ring in 2d

조회 수: 26 (최근 30일)
Denis Wolff
Denis Wolff 2016년 10월 4일
편집: Petr Bouchal 2022년 12월 28일
Hello,
I want to generate a 2d image (in form of a matrix) of a ring which is smoothed towards the outer and inner border by a Gaussian distribution, i.e. something looking like this:
That is, pixels in the image corresponding to the middle radius of the ring should have highest values and outer pixels values that are decreasing towards the borders.
Thanks, Denis
  댓글 수: 2
Naresh Sharma
Naresh Sharma 2018년 9월 17일
Can anyone suggest me the appropriate algorithm to find the center and the diameter(inner and outer) of the ring profile images?
Naresh
Petr Bouchal
Petr Bouchal 2022년 12월 28일
편집: Petr Bouchal 2022년 12월 28일
You can fit with the theoretical ring function using the least-squares method to find the width and central radius and calculate the inner and outer radius afterward.
%% generating ring with gaussian profile
x = linspace(-1,1,200);
y = linspace(-1,1,200);
[X,Y] = meshgrid(x,y);
[Phi,R] = cart2pol(X,Y);
R0 = 0.5; %ring radius
W = 0.2; %ring width
ring = exp(-((R-R0).^2)./W.^2);
%% finding center and diameter
fun = @(x,R) exp(-((R-x(1)).^2)./x(2).^2);
x0 = [1,1];
x = lsqcurvefit(fun,x0,R,ring);
Local minimum found. Optimization completed because the size of the gradient is less than the value of the optimality tolerance.
R0_reconstructed = x(1);
W_reconstructed = x(2);
%% accuracy
R0_reconstructed
R0_reconstructed = 0.5000
R0-R0_reconstructed
ans = -2.7756e-15
W_reconstructed
W_reconstructed = 0.2000
W-W_reconstructed
ans = 1.2768e-15

댓글을 달려면 로그인하십시오.

채택된 답변

Seth Meiselman
Seth Meiselman 2016년 12월 15일
Try something like this: create a series of circles whose amplitude is in the form of a Gaussian with respect to some defined peak radius, R0, and the usual width factor, sig.
sizex = 1024;
sizey = 1024;
[ncols, nrows] = meshgrid(1:sizex, 1:sizey);
centerx = sizex/2;
centery = sizey/2;
R0 = 300;
sig = 20;
gring = zeros(sizex,sizey)';
for i=1:400
iR = i;
oR = i+sig;
array2D = (nrows - cy).^2 + (ncols - cx).^2;
ringPixels = array2D >= iR^2 & array2D <= oR^2;
gaussring = gaussring + ringPixels.*(1/(sig*sqrt(2*pi)))*exp(-((iR-R0)/(2*sig))^2);
end
figure(1);
surf(gaussring); axis tight; shading flat; view(2); colormap('jet');
This results in the plot:
and a non-trivial slice through the image
figure(2);
plot(gring(sizex/4,:)); axis tight;
  댓글 수: 2
Seth Meiselman
Seth Meiselman 2016년 12월 15일
I should have also said, since this is made on a discrete grid- it creates the matrix you are looking for, but also has some drawbacks- it's very 'pixelated'. You can see this by rotating the surface plot and observing spikes that pop up. Nothing a quick smoothing function wouldn't remove if it was critical to remove.
Denis Wolff
Denis Wolff 2016년 12월 19일
Thank you Seth, that solves it!

댓글을 달려면 로그인하십시오.

추가 답변 (3개)

Petr Bouchal
Petr Bouchal 2022년 12월 23일
편집: Petr Bouchal 2022년 12월 28일
Hi, I would say the most appropriate approach is the following:
x = linspace(-1,1,200);
y = linspace(-1,1,200);
[X,Y] = meshgrid(x,y);
[Phi,R] = cart2pol(X,Y);
R0 = 0.5; %ring radius
W = 0.2; %ring width
ring = exp(-((R-R0).^2)./W.^2);
figure(); hold on;
imagesc(ring); axis equal; colormap gray;
plot(size(ring,1)*ring(0.5*size(ring,1),:));

KSSV
KSSV 2016년 10월 4일
clc; clear all ;
M = 10 ;
N = 100 ;
R1 = 0.5 ; % inner radius
R2 = 1 ; % outer radius
nR = linspace(R1,R2,M) ;
nT = linspace(0,2*pi,N) ;
%nT = pi/180*(0:NT:theta) ;
[R, T] = meshgrid(nR,nT) ;
% Convert grid to cartesian coordintes
X = R.*cos(T);
Y = R.*sin(T);
[m,n]=size(X);
%
D = (X.^2+Y.^2) ;
% D(D<R1) = 1 ;
% D(D>R2) = 1 ;
Z = gauss(D);
surf(X,Y,Z);
colormap('gray')
shading interp ;
view([0 90]) ;
set(gca,'color','k')
  댓글 수: 1
Denis Wolff
Denis Wolff 2016년 10월 4일
Thank you, but this is actually not what I am looking for. This code only applies a Gaussian distribution with mu in the center of the circle, smoothing towards the outer border only. What I am looking for is a ring which is smoothed towards outer and inner border. There are many Gaussians so to say which have mus that correspond to the pixels on the middle radius of the ring.

댓글을 달려면 로그인하십시오.


Joe Yeh
Joe Yeh 2016년 10월 4일
편집: Joe Yeh 2016년 10월 4일
I suppose you're looking for Laplacian of Gaussian ( Mexican hat )filter ? It fits your description. You can get a laplacian of gaussian kernel by :
log_kernel = fspecial('log');
The attached picture is a surf plot of a laplacian of gaussian kernel.
  댓글 수: 1
Denis Wolff
Denis Wolff 2016년 10월 4일
편집: Denis Wolff 2016년 10월 4일
Thanks, that's an interesting hint! The only problem with this approach is that the smoothing is not the same for the inside as for the outside (cf. output below, it's much steeper for the inner border).
There has to be some symmetrical Gaussian ring distribution which is looking like this but without the peak in the middle...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Preprocessing Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by