Tagged Questions

2
votes
4answers
198 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 MAT …
-1
votes
6answers
162 views

Generating a gaussian distribution with only positive numbers

Is there any way to randomly generate a set of positive numbers such that they have a desired mean and standard deviation? I have an algorithm to generate numbers with a gaussia …
0
votes
3answers
84 views

How to generate Gaussian Channel in C?

I need to simulate a Gaussian Channel in C. How do I do that? Where can I get code snippets for this?
5
votes
8answers
3k 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 platf …
0
votes
3answers
256 views

How does a blur gauss algorithm look like? Are there examples of implementation?

I have a bitmap image context and want to let this appear blurry. So best thing I can think of is a gauss algorithm, but I have no big idea about how this kind of gauss blur algori …
1
vote
3answers
307 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 -+ i …
1
vote
1answer
160 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 jo …
2
votes
3answers
448 views

C++: generate gaussian distribution

Hi, 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.
1
vote
4answers
1k views

How is the gaussian filter algorithm work in OpenCV

I write my own gaussian filter but it is really slow. OpenCV's gaussian algorithm is much faster, 20 times than my gaussian filter. I want to rewrite opencv's gaussian algorithm i …
3
votes
4answers
1k 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 leav …
6
votes
4answers
539 views

Random Gaussian Variables

Hi there, 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 distribut …
2
votes
2answers
313 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?