Tagged Questions

0
votes
3answers
137 views

Which algorithm does Neatimage use to denoise images?

Which kind of algorithm does Neatimage use to remove noise and grain from photos? I understand that this is proprietary software, but probably someone has an idea. References to pu …
0
votes
4answers
49 views

iPhone SDK: AVAudioPlayer making noise when paused or finishes

Hi, I'm playing multiple wav files (I tried using caf but same thing happen) with AVAudioPlayer. All the files are less than 2 sec, and 16 bit sound - file size is ~40kb. I found …
1
vote
2answers
105 views

Simulating engine noise in Flash 10

I'm working on a "retro" motorbike game in flash, similar to the Road rash series on the mega drive and after having a long play with the sound sampling capabilities of flash I can …
1
vote
1answer
134 views

C# sound visualisation

I would like to create a sound visualisation system using C# language and .NET Framework. This could look like in Winamp application. Maybe exist free library or some interesting …
2
votes
3answers
262 views

Best way to remove “noise” words in ASP .NET 3.5 Web App?

Hi all, I want to drop some keywords meta tags into a page depending on the article being showed. Let's say you load the page blabla.com/article.aspx?id=2 The article which id eq …
1
vote
1answer
51 views

Procedural Hash Function

I am wondering what is the best hash function for procedural textures, especially perlin noise. I know about the PRNG posted on this page, but this claims that it is not a good PRN …
0
votes
1answer
57 views

A lot of noise while playing audio files with AVAudioPlayer (iphone)

Hi, I get a lot of noise during playback. The noise is not there when I play it on my mac, so it has to be an error with the AVAudioPlayer. Has anyone else experienced the same? I …
2
votes
2answers
101 views

AWGN generator for .NET

I'm looking for an Additive White Gaussian Noise generator for .NET. I know that somewhere there is some degree of interoperability between .NET and MATLAB, which has a AWGN gene …
3
votes
4answers
266 views

Are there any other uses for Perlin Noise besides the obvious?

I have been looking into different algorithms lately and have read quite alot about perlin noise. It seems like the only thing people use it for is to generate textures (clouds/woo …
2
votes
4answers
487 views

Finding an approximate local maximas with noisy data in Matlab

Hi, The matlab FAQ describes a one-line method for finding the local maximas: index = find( diff( sign( diff([0; x(:); 0]) ) ) < 0 ); But I believe this only works if the d …
7
votes
9answers
1k views

How can I make a Pink Noise generator?

((Answer selected - see Edit 5 below.)) I need to write a simple pink-noise generator in C#. The problem is, I've never done any audio work before, so I don't know how to interact …
2
votes
7answers
254 views

How to analyse ‘noisiness’ of an array of points

Have done fft (see earlier posting if you are interested!) and got a result, which helps me. Would like to analyse the noisiness / spikiness of an array (actually a vb.nre collecti …