Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
737 views

How to implement the Gaussian mutation operator for a genetic algorithm in Java

I try to learn and implement a simple genetic algorithm library for my project. At this time, evolution, selection of population is ready, and I'm trying to implement a simple good mutation operator ...
12
votes
4answers
11k views

How do I gaussian blur an image without using any in-built gaussian functions?

I want to blur my image using the native gaussian blur formula. I read this, but I am not sure how to implement this. How do I use the formula to decide weights? [I mentioned MATLAB because I do not ...
12
votes
6answers
4k views

Random Gaussian Variables

does someone of you know if there is a class in the standard library of .net, that gives me the functionality to create random variables that follow a gaussian distribution? Greets Sebastian
9
votes
9answers
16k views

Fastest Gaussian blur implementation

How do you implement the fastest possible Gaussian blur algorithm? I am going to implement it in Java, so GPU solutions are ruled out. My application, planetGenesis, is cross platform, so I don't ...
6
votes
2answers
143 views

Integration in Mathematica

I would like to get a different solution to a problem I have solved "symbolically" and through a little simulation. Now, I would like to know how could I have got the integration directly using ...
6
votes
1answer
177 views

jQuery Animated Gaussian Blur

On the home page of a website I'm designing, I'd like the initial hero image to animate from blurred (gaussian) to sharp. I've looked around, and have been surprised that there's not a readily obvious ...
6
votes
3answers
3k views

Test if a data distribution follows a Gaussian distribution in MATLAB

I have some data points and their mean point. I need to find whether those data points (with that mean) follows a Gaussian distribution. Is there a function in MATLAB which can do that kind of a test? ...
5
votes
3answers
565 views

Implementing Gaussian Blur - How to calculate convolution matrix (kernel)

My question is very close to this question: How do I gaussian blur an image without using any in-built gaussian functions? The answer to this question is very good, but it doesn't give an example of ...
5
votes
1answer
577 views

Gaussian Elimination in Java

I was trying to implement a Matrix.class to learn some Java. Right now, I have some difficulties with a method that should return the matrix after Gaussian elimination which will be used to find the ...
5
votes
4answers
754 views

Random number generator that generates integers for Java

I want to generate some random integers in Java, but this according to some distribution laws. More specific: I want to generate some random integers for gaussian distribution. I found out only ...
5
votes
2answers
536 views

R + ggplot : how to use a custom smoother (Gaussian Process)

I'm using R. I have 25 variables over 15 time points, with 3 or more replicates per variable per time point. I've melted this into a data.frame, which I can plot happily using (amongst other things) ...
4
votes
1answer
87 views

questions about self-defined Gaussian blur using convolution

I am writing a function Conv2ByFFT() to do the Gaussian blur which is similar to the GaussianBlur() in openCV api. But as i compare the effects between by function and GaussianBlur() api, i find that ...
4
votes
2answers
743 views

gaussian blur with FFT

im trying to implement a gaussian blur with the use of FFT and could find here the following recipe. This means that you can take the Fourier transform of the image and the filter, multiply ...
4
votes
3answers
705 views

Coding UnsharpMask without Fourier functions

I am doing some image processing code in C#, but I cant use any libraries or GNU like code. The UnsharpMask function depends on Gaussian blur which in turn depends on Fourier Transforms. I wrote ...
4
votes
2answers
1k views

one Dimensional gauss convolution function in Matlab

I am trying to write a function that returns a one dimentional gauss filter. the function took sigma as a parameter. The problem is that the function returns the same array for all sigmas. function ...
4
votes
7answers
6k views

Best way to write a Python function that integrates a gaussian?

In attempting to use scipy's quad method to integrate a gaussian (lets say there's a gaussian method named gauss), I was having problems passing needed parameters to gauss and leaving quad to do the ...
3
votes
1answer
58 views

Gaussian elimation - Linear equation matrices, algorithm

Let's assume that we have a simple matrix 3rows x 7cols. The matrix includes only zeros (0) and (1) like: 1 0 1 1 1 0 0 0 0 1 1 0 0 0 0 0 1 0 1 1 0 Senario: If we know the sum of non-zeros in each ...
3
votes
1answer
93 views

C++ Implementation of GMM using Gibbs Sampler i.e Dirichlet Process Gaussian Mixture Model

I am looking a C++ implementation of a multi-variate GMM that uses a Gibbs Sampling based approach to fitting / classification (rather than the usual EM based), in order to be able to make full use of ...
3
votes
2answers
305 views

Gaussian Blur with FFT Questions

I have a current implementation of Gaussian Blur using regular convolution. It is efficient enough for small kernels, but once the kernels size gets a little bigger, the performance takes a hit. So, I ...
3
votes
1answer
304 views

Median variance in background subtraction

I am facing some issues in implementation of the paper Statistical Background Subtraction for a Mobile Observer. Question 1: In Section 4.1, it talks about "... the median variance is computed over ...
3
votes
1answer
371 views

What's wrong with this python image blur function?

EDIT: Thanks to Howard, I've corrected the code here and it seems to be working now. EDIT2: I've updated the code to include a vertical blur as originally intended. Resulting sample output with ...
3
votes
2answers
622 views

Generate a random number in a Gaussian Range?

I want to use a random number generator that creates random numbers in a gaussian range where I can define the median by myself. I already asked a similar question here and now I'm using this code: ...
3
votes
3answers
404 views

Calculate distance from point p to high dimensional Gaussian (M, V)

I have a high dimensional Gaussian with mean M and covariance matrix V. I would like to calculate the distance from point p to M, taking V into consideration (I guess it's the distance in standard ...
3
votes
2answers
2k views

Gaussian blur and convolution kernels

I do not understand what a convolution kernel is and how I would apply a convolution matrix to pixels in an image (I am talking about doing a Gaussian Blur operation on an image). Also could I get ...
3
votes
3answers
11k views

Gaussian filter in MATLAB

Does the 'gaussian' filter in MATLAB convolve the image with the Gaussian kernel? Also, how do you choose the parameters hsize (size of filter) and sigma? What do you base it on?
3
votes
3answers
578 views

Estimate gaussian (mixture) density from a set of weighted samples

Assume I have a set of weighted samples, where each samples has a corresponding weight between 0 and 1. I'd like to estimate the parameters of a gaussian mixture distribution that is biased towards ...
3
votes
1answer
422 views

Computing the probability for a section of a joint distribution

Considering I have a continuous joint distribution of two independent normal random variables (let's assume the independent vars are on the X and Z axis, and the dependent - the joint probability - is ...
2
votes
1answer
72 views

Linear regression in java [closed]

I have a java code that performs a linear regression on a set of data using the gaussjordan elimination. It calculates a linear, quadratic and cubic functions using the least squares method. My ...
2
votes
1answer
84 views

Java generate random numbers using Possion/Gaussian/Exponential/Geometric/Uniform distribution

How can I generate a random number in Java using different distributions within a range(0-99). I know the standard Java.util.Random getNextInt() uses Uniform and PRNG. How would I use nextGaussian? ...
2
votes
2answers
157 views

Implementing Naïve Bayes algorithm in MATLAB - Need some guidance

I have a Binary classification problem that I need to do in MATLAB. There are two classes and the training data and testing data problems are from two classes and they are 2d coordinates drawn from ...
2
votes
1answer
126 views

Gaussian blur and FFT

I´m trying to make an implementation of Gaussian blur for a school project. I need to make both a CPU and a GPU implementation to compare performance. I am not quite sure that I understand how ...
2
votes
2answers
215 views

Gaussian fit in C#

In a project I'm working on I need to obtain a Gaussian fit from a set of points - needing mean and variance for some processing, and possibly an error degree (or accuracy level) to let me figure out ...
2
votes
2answers
260 views

How to generate 2D gaussian with Python?

I can generate Gaussian data with random.gauss(mu, sigma) function, but how can I generate 2D gaussian? Is there any function like that?
2
votes
1answer
177 views

Variable radius Gaussian blur, approximating the kernel

I'm writing a Gaussian blur with variable radius (standard deviation), i.e. each pixel of the image is convolved using a different kernel. The standard techniques to compute Gaussian blur don't work ...
2
votes
2answers
186 views

how to generate gaussian pseudo random numbers in c for a given mean and variance?

I have a code here which generates random numbers having a mean 0f 1 and std deviation of 0.5. but how do i modify this code so that i can denerate gaussian random numbers of any given mean and ...
2
votes
1answer
154 views

Best way to generate a set of integers of size N, distributed like a normal distribution, given a mean and std. deviation

I'm looking for a way to generate a set of integers with a specified mean and std. deviation. Using the random library, it is possible to generate a set of random doubles distributed in gaussian ...
2
votes
1answer
280 views

Fast and efficient upper diagonal matrix inverse

I compute the multinomial Gaussian density for some huge number of times in a project where I update the covariance matrix by rank-1. Instead of computing the covariance from scratch, I used the ...
2
votes
1answer
637 views

Gaussian random number generator

I'm trying to implement a gaussian distributed random number generator in the interval [0,1]. float rand_gauss (void) { float v1,v2,s; do { v1 = 2.0 * ((float) rand()/RAND_MAX) - 1; v2 = ...
2
votes
1answer
727 views

Finding equivalent gaussian filter mask in frequency domain for given mask in space domain

So far I've implemented a gaussian blur filter entirely in the space domain, making use of the separability of the gaussian, that is, applying a 1D gaussian kernel along the rows and then along the ...
2
votes
1answer
386 views

Fast Gaussian cdf function

I would like to know the cheapest, dirtiest approximation of the Gaussian cdf. Would it be a Taylor series or this method: http://www.cs.princeton.edu/introcs/21function/ErrorFunction.java.html
2
votes
3answers
805 views

how to generate a gaussian distribution using mysql user-defined function

I like to use MySQL to do quantitative analysis and statistics. I would like to make a MySQL user-defined function of the form: sample_gaussian(mean, stdev) that returns a single randomized value ...
2
votes
1answer
469 views

Generating means from a bivariate gaussian distribution

I am reading Elements of Statistical Learning ESLII and in chapter 2, they have a gaussian mixture data set to illustrate some learning algorithms. To generate this data set, they first generate 10 ...
2
votes
1answer
182 views

Algorithm to distribute over *part* of a Normal distribution

Is there a single pass algorithm that can produce numbers distributed over part of a normal (Gaussian) distribution? I want to specify a base value (the center of the distribution), a standard ...
2
votes
2answers
1k views

How to generate normally distributed random from an integer range?

Given the start and the end of an integer range, how do I calculate a normally distributed random integer between this range? I realize that the normal distribution goes into -+ infinity. I guess the ...
2
votes
3answers
4k views

C++: generate gaussian distribution

I would like to know if in C++ standard libraries there is any gaussian distribution number generator, or if you have any code snippet to pass. Thanks in advance.
2
votes
2answers
1k views

Gaussian distributions with PHP on a 24h time period

How can I set points on a 24h period spreaded by the Gaussian distributions? For example to have the peak at 10 o'clock?
1
vote
0answers
39 views

gaussian elimination to solve Ax=b in matlab for boolean matrices

Apologies for the extremely long post. I have the following code where I am tying to calculate Ax=b using matlab and gaussian elimination. When I compare my output with the actual expected output, the ...
1
vote
2answers
44 views

Gaussian Elimination in Matlab

I am using the matlab code from this book: http://books.google.com/books/about/Probability_Markov_chains_queues_and_sim.html?id=HdAQdzAjl60C Here is the Code: function [pi] = GE(Q) A = Q'; ...
1
vote
2answers
60 views

Difference beetwen filter2d() with gaussian kernel and GaussianBlur()

I am a neophyte of opencv. I should perform operations for a project involving the use of a 2D low-pass Gaussian filter. The OpenCV that I use are 2.2 and inside there are two functions: filter2d () ...
1
vote
2answers
38 views

program for A three-point Gauss integration

I want to write a java program to calculate integral with three-point Gauss. How to calculate result of every function that is string? For example want to calculate F(x) = x^4 + cos(x) + e^2x

1 2