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
-2
votes
1 answer

How to generate tiling Perlin noise in Lua?

All I have at the moment is this mess of code: http://pastebin.com/F9Dc7pbR Which is not tileable, nor pretty (You'll have to take my word for it as I can't post it due to reputation). I also have found this example code for noise that would tile:…
Randy G
  • 3
  • 3
-2
votes
1 answer

Noise Cancel in Matlab

I am trying to remove noise from a wav file. But I keep getting the following error after run the script. The wav file I use is https://drive.google.com/file/d/0BzIyOj_KUKufTTNWMFlRMW9fT2c/view?usp=sharing I use the code from Remove noise from wav…
-2
votes
1 answer

Remove noise from image in GIMP

I was trying hard to find a solution for automated background remove. Target images are modeling images with white/gray gradient background which are sometimes a nightmare for background remove. For example I tried this image which the model wears…
imaraz
  • 11
  • 1
-2
votes
1 answer

Attaining desired input snr in noisy signal

I have taken a clean speech signal and need to get an input SNR of 0dB, 5dB and 10dB by adding certain amount of white noise. Can anyone explain what 0dB, 5dB... is? Is it the power of white noise in the command noise=wgn(1,20115,0); and if not,…
Arpita
  • 1
-2
votes
1 answer

how to understand Perlin Noise and how to use it?

I'm desperate right now. Searched every corner and everything to figure out but i still cant.. I'm looking how to use noise to generate a tiled 2d map in java. This is the only thing i ever wanted in programming to know this. Best way to me to learn…
-2
votes
1 answer

Denoising an Image using ImageJ Macros

I would like to ask how to denoise this image using ImageJ macros. I know it's like coding in C but i want to know what is the algorithm that i can use to denoise this picture.
user3388464
  • 27
  • 1
  • 3
-3
votes
1 answer

How to delete ripple of an exponential signal

I have the following data, which corresponds to a "noisy" exponential shaped signal. Is there any easy/intuitive way of eliminating the noise/ripple of it to get a clean signal (like filtering)? Any help is appreciated!
euskadi
  • 127
  • 1
  • 14
-3
votes
1 answer

Accelerometer data and reducing noise with some filter in MATLAB

I've collected my data using ADXL345. In order to get rid of noise, I need to use a filter in MATLAB. I should filter the values from just one axis so it's a one dimensional array (just x-axis). I am unsure whether to use Kalman Filter or others.…
-3
votes
1 answer

Random numbers in Ruby

I am trying to make n random numbers from -0.5 from to 0.5 and I made a function like this def create_noise(n) end I found an implementation of this but i don't think this works randoms = Set.new loop randoms << rand(max) …
Gent Binaku
  • 55
  • 11
-3
votes
2 answers

Uncompilable source code - Erroneous sym type: java.io.File.getSampleV

import java.io.File; import java.io.FileInputStream; //import javax.swing.JFrame; public class filterpanitha { //public void graph(){ //} /** * @param args */ public static void main(String[] args) { // First, get the data from a sound file…
-4
votes
2 answers

What are overfitting and noise in machine learning?

Can anyone explain what is overfitting and noise in ML ? Can this happen in parametric classfiers ? How to know if the model is overfitting the data ?
Bacem Tayeb
  • 45
  • 3
  • 8
-4
votes
2 answers

how to assign noise to sine wave using matlab or i have to use the command?

i have assignment that i have to print a pure sine wave & add some noise to it & print another copy, i know that i can get pure sine wave using matlab/simulink but how can i add noise to it? is there away to implement it using simulink part of…
Amr saad
  • 13
  • 1
  • 7
-6
votes
2 answers

Image noise removal is part of image enhancement or image restoration?

I am working in digital image processing field, recently I am studying about Image Noise, I just want to know that whether this noise removal is part of image enhancement or image restoration. I have read some papers on it, at some points authors…
Mayank Tiwari
  • 2,974
  • 5
  • 30
  • 52
1 2 3
63
64