Questions tagged [noise]

Noise is random variation in a signal, for example errors in measurements of the position of a moving object.

Noise is a signal produced by a stochastic process, mostly unwanted random addition to a signal. It is called noise as a generalization of the acoustic noise ("static") heard when listening to a weak radio transmission with significant electrical noise.

In signal processing or computing noise can be considered random unwanted data without meaning; that is, data that is not being used to transmit a signal, but is simply produced as an unwanted by-product of other activities. "Signal-to-noise ratio" (SNR) is sometimes used to refer to the ratio of useful to irrelevant information in an exchange.

Noise is usually uncorrelated and have a specific distribution that describes it (uniform, Gaussian, etc). The color of a noise signal is generally understood to be some broad characteristic of its power spectrum. Different "colors" of noise have significantly different properties. The practice of naming kinds of noise after colors started with "white noise", a signal whose spectrum has equal power within any equal interval of frequencies. That name was given by analogy with "white light", which was assumed to have such a "flat" power spectrum over the visible range. Other color names, like "pink", "red", and "blue" were then given to noise with other spectral profiles; often (but not always) in reference to the color of light with similar spectra. Some of those names have standard definitions in certain disciplines, while others are very informal and poorly defined.

Usage:

The tag can be used for programming related questions to remove/filter noise from a system and other related questions. Please avoid theoretical and physics based noise related questions on stackoverflow, https://physics.stackexchange.com/ is another stackexchange site where you can ask such theoretical and physics based questions.

Read more

  1. https://en.wikipedia.org/wiki/Noise
  2. https://www.thefreedictionary.com/noise
958 questions
0
votes
1 answer

World Generation Noise Concept

So, I've been working on a game of mine but I have hit a dead end with something. I do not understand the concept of Noise in World Generation. A long time ago I tried to make my own 'map generator' by pretty much coding a 500x500 image and telling…
0
votes
1 answer

Calculating amplitude of a waveform chunk, ignore short peaks

I have an incoming sine test signal from a microphone. I know that I can find a peak amplitude just by scanning the vaweform samples and looking for max magnitude (taking into account that it may be also negative). I take chunks about 500ms. The…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
0
votes
2 answers

Java - Perlin noise that loops

I need to generate textures for 3D planets (spheres) in Java using a perlin noise program I wrote. But the catch is that the left and right need to be the same, also up and down so you can put the texture on a sphere. I can't put the perlin noise…
user1217946
0
votes
3 answers

I would like to add gaussian noise for each x value of my sample data and then plot

I am having some problems in plotting this. Everything is ok until the plot statement where nothing plots. Can someone please help me so that it can plot something. The following is my code: j = 10; s = 0; r = 0; B[n_] =…
user1482746
  • 5
  • 1
  • 4
0
votes
1 answer

Adding Noise to an Image

I am trying to add noise to a BufferedImage in Java, but I am more interested in the algorithm used to add noise to an image rather than the Java or any other language-specific implementation. I have searched the web and found out about the…
john27
  • 27
  • 1
  • 4
0
votes
2 answers

How to add/remove echo/noise for a given wave file

Without knowing about noise and echo, I am asking this question. How to remove/add noise /echo for a given WAV file? Please provide suggestions/guidance.
Hareesh Jr
  • 215
  • 1
  • 8
0
votes
1 answer

Stop 'Ding' sound when a Key is pressed

I am aware others have asked this, but the answers have not resolved my problem as the previous questions were slightly different to mine. private void Form1_KeyDown(object sender, KeyEventArgs e) { if (e.KeyValue == 221) { …
ρσݥzση
  • 217
  • 3
  • 13
0
votes
1 answer

Getting wifi AP detailed information on Android

i used a command "iwlist wlan0 scan" on android virtual terminal application and get some information on AP's specially the noise dbm. Information are available if the phone is rooted im using cyanogen mod. is it possible on none rooted phones? any…
0
votes
2 answers

Make 3D perlin noise function from 2D function

So, I am trying to plot abstract shapes that change with time using openGL. For that, I want to use the Perlin noise function. This code (http://www.sorgonet.com/linux/noise_textures/) is a just perfect start for me, except for the fact that the…
bluewhale
  • 167
  • 3
  • 13
0
votes
0 answers

how to avoid chrome chime sound

when I'm drag and drop some in chrome, it always make some noise, you can try it in your chrome: click on some empty place, then drag, then release mouse, it makes the sound. I really hate it, and I have seen some page don't have the chime sound,…
qiu8310
  • 237
  • 1
  • 2
  • 8
-1
votes
1 answer

is there any way to measure noise in android

how to measure noise in android,means when I run my app,there is a MIC which hear noise and send me result that noise is good or bad.
-1
votes
1 answer

Is it possible to use a car's Bluetooth speaker for noise cancelling?

I thought about it one day while using anc earphones. Earphones almost suppressed the noise of the car. Meanwhile, I wondered if anc using car speakers and mobile phone applications would be possible. It would be difficult to respond immediately to…
-1
votes
1 answer

How do I use a function from a library?

I have to use a noise function from the library Noise.js. How would I go about adding the library to my file so that it is called? Here is the small section that calls it. //Use noise.js library to generate a grid of 2D simplex noise values try { …
Yerbs
  • 127
  • 1
  • 7
-1
votes
1 answer

What algorithm can find noise in a signal?

In class the lecturer asked us a question, during a concert the conductor hears a false note (noise), translating this into signal fundamentals how does the conductor detect this noise? My guess is that it may be related to the Fourier transform,…
maofyn
  • 1
-1
votes
1 answer

java remove gaussian noise

I am trying to write a program that would remove noise from an image with a Gaussian filter. I am trying to write the following code: public class Main { public static void main(String[] args) { File file = new…
rulila52
  • 111
  • 1
  • 6