2d gaussian function

420 views (last 30 days)
lital
lital on 3 Aug 2011
Commented: Walter Roberson on 17 Oct 2020
I need to plot a 2d gaussian function, where x and y corresponds to the image pixels, my code uses a nested for loop which makes my program run extremely slow, is there a way to write this in a more faster way?
(right now it takes about 8-10 sec to run on 1920*1080 size matrix and i need to produce 173,340 2d gaussian functions images which is too much time...)
thanks in advance for any help.
this is my current code:
function mat = gauss2d(mat, sigma, center)
gsize = size(mat);
for r=1:gsize(1)
for c=1:gsize(2)
mat(r,c) = gaussC(r,c, sigma, center);
end
end
function val = gaussC(x, y, sigma, center)
xc = center(1);
yc = center(2);
exponent = ((x-xc).^2 + (y-yc).^2)./(2*sigma);
val = (exp(-exponent));
  10 Comments
Andicha Zain
Andicha Zain on 17 Oct 2020
not project but it's my topic thesis.
Walter Roberson
Walter Roberson on 17 Oct 2020
It is already Saturday in Atlantic Time and everywhere east of that. There is zero chance that anyone is going to write the code for you in the next few hours before you meet with your professor.
However, if you ask specific questions about MATLAB then there is a possibility that someone might answer in the next few hours.

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 3 Aug 2011
function mat = gauss2d(mat, sigma, center)
gsize = size(mat);
[R,C] = ndgrid(1:gsize(1), 1:gsize(2));
mat = gaussC(R,C, sigma, center);
  5 Comments
BBB
BBB on 11 Nov 2019
Hi Walter,
It's perfect and working! Thanks :)
Andicha Zain
Andicha Zain on 21 Sep 2020
Edited: Walter Roberson on 15 Oct 2020
hello can anyone help me
how to write program The Influence of Coherence Length and Gaussian Beam on the Multibeam Interference by Matlab ?
please help me.

Sign in to comment.

More Answers (5)

Image Analyst
Image Analyst on 26 Nov 2011
Is that 8-10 seconds for all 173,340 Gaussians? That's not bad. I have a demo that randomly places Gaussians in a larger image using fspecial() and indexing, not one pixel at a time like you did. It takes about 7.4 seconds on an old computer for 173,340 randomly placed Gaussians in a 1920x1080 image. Here's the code, in case you're interested:
% Demo to randomly place Gaussians in an image.
% By ImageAnalyst
clc; % Clear the command window.
close all; % Close all figures (except those of imtool.)
imtool close all; % Close all imtool figures.
clear; % Erase all existing variables.
workspace; % Make sure the workspace panel is showing.
tic;
% Set up some parameters.
fontSize = 20;
backgroundGrayLevel = 128;
windowSize = 50; % Could be random if you want.
sigma = 10; % Could be random if you want.
numberOfGaussians = 173340;
rows = 1080;
columns = 1920;
% Create one Gaussian.
g = fspecial('gaussian', windowSize, sigma);
grayImage = backgroundGrayLevel * ones(rows, columns);
% Create random signs so that the Gaussians are
% randomly brighter or darker than the background.
s = 2*randi(2, [1 numberOfGaussians])-3;
% Note: g and grayImage are floating point images, not uint8,
% though you could modify the program to have them be uint8 if you wanted.
% Get a list of random locations.
randomRow = randi(rows-windowSize+1, [1 numberOfGaussians]);
randomCol = randi(columns-windowSize+1, [1 numberOfGaussians]);
% Place the Gaussians on the image at those random locations.
for k = 1 : numberOfGaussians
grayImage(randomRow(k):randomRow(k)+windowSize-1, randomCol(k):randomCol(k)+windowSize-1) = ...
grayImage(randomRow(k):randomRow(k)+windowSize-1, randomCol(k):randomCol(k)+windowSize-1) + ...
s(k) * g;
end
toc;
% Display the final image.
imshow(grayImage, []);
caption = sprintf('%d Gaussians, Randomly Placed', numberOfGaussians);
title(caption, 'FontSize', fontSize);
axis on;
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1])
set(gcf,'name','Demo by ImageAnalyst','numbertitle','off')
  2 Comments
Muhammed Sameed
Muhammed Sameed on 24 Apr 2020
This is a really good piece of code. But how would you do the reverse i.e. from a noisy image with N randomly placed Gaussians, extract the centroid location and sigma of each Gaussian? I am interested in N=2 for the moment, but a generalized function would be helpful.
Walter Roberson
Walter Roberson on 24 Apr 2020
Hmmm, would that be like finding the values of x(n), y(n), width(n), height(n) such that the sum of the gaussians generated by those parameters is everywhere less than (image + 1/2*EPS(image)), where EPS(image) is 1 for integer-valued images and eps(image) for floating point? Which is to say, that the sum of the gaussians can exceed the value of the image at any given location, but must not exceed it by enough that the total would become the next representable number ? For example on an integer image, if an image location was 42, and the sum of gaussians predicted 42.42 there, then that would be okay because uint8(42.42) would be 42, but predicting 42.52 would not be okay because uint8(42.52) would be 43.

Sign in to comment.


Mahdi
Mahdi on 22 Jul 2014
I faced the same problem, just so others know you can use fspecial('gaussian', hsize, sigma) intrinsic function.
  1 Comment
Image Analyst
Image Analyst on 22 Jul 2014
Thanks for calling it out specially - it was kind of buried in my demo code and hard to notice.

Sign in to comment.


Logan
Logan on 25 Nov 2011
where do you get the gaussC function?
  1 Comment
Walter Roberson
Walter Roberson on 26 Nov 2011
The code for gaussC is shown in the original Question by lital.

Sign in to comment.


Karbala'a Unvi. Science
Karbala'a Unvi. Science on 28 Dec 2014
Dear Sir, I am interested about the code that you wrote about the 2D Gaussian. I have a problem that I want to an image data to be distributed in another image ( image A is the Original, image B is the data one) so that when you see image A you find that there is a noise in it ( where that noise is image B)... I hope that is a good information to help me in building the code... Help will be appreciated.. Thank you in advance
  1 Comment
Image Analyst
Image Analyst on 28 Dec 2014
This is not an answer. Who are you talking to? You should have put it as a comment under their answer. Why don't you just try your best and then post your code as a new question? And explain it better there. I don't even understand what you want. I don't know if B is a "data" image or a "noise" image and if you can just add B to A.

Sign in to comment.


rusgu fcf
rusgu fcf on 6 May 2016
what does the variable 'center' signify in the code of gaussian2d by lital ?
  3 Comments
Rym Benchaabane
Rym Benchaabane on 29 Mar 2020
is center a real number ie 0? or a two element array ie [0,0]?
Thank you
Image Analyst
Image Analyst on 29 Mar 2020
It's a 2-element vector, as you can see by looking inside his gaussC() function.
I recommend you use my code or Walter's code since lital's had problems.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!