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

Add noise to image according to a certain amount

Hi I am a Matlab beginner, I would like to ask help about degrading an image file by adding in a certain amount of random noise data. The percentage of the noise will be in a range of 0-100, indicating how the output will be: 0 will be no…
0
votes
1 answer

How to remove salt&pepper noise in MatLab

Hi I need to remove the salt&pepper noise from an image. My function has 3 parameters input_img_path, a mask(i j)==1 and output_img_path. I need someone to explain how does that mask work and how to remove that noise.
Alex
  • 31
  • 1
  • 7
0
votes
3 answers

Fit sinusoidal models

I have tried to fit following sinusoidal model by the following model, which means that deterministic model + white noise: function [x]=generate(N,m,A3) f1=100; f2=200; T=1/f1; for t=0:N*T/m:N*T WN(t)=rand(1,t)*2-1; …
user466534
0
votes
1 answer

Remove artifacts/noise from a depth analyzer

Given two images and you can find the depth from scanning each row and differences, does anybody know how to remove noise? for example, if the expected output is left and mine is…
adsfdsafdsa
  • 51
  • 1
  • 2
  • 8
0
votes
1 answer

Implementing Scape's "Procedural Basics" Perlin Noise in Unity

Trying to implement the noise functions from the following article in C# using Unity: http://www.decarpentier.nl/scape-procedural-basics And it's mostly working, but something must be wrong with the blending across the x access, as the terrain is…
0
votes
1 answer

Android: clicking noise is heard on headphone while playing audio when phone moves

I have written an Android app that receives audio from WiFi and plays it. When the phone is still and not moving the audio quality is great. But when I move the phone specially when it is connected to a headphone I can hear clicking noise. I am…
TJ1
  • 7,578
  • 19
  • 76
  • 119
0
votes
2 answers

What is the purpose of noise images blended into a CSS button?

I noticed that the buttons on unfuddle.com use a layer of noise, i was just wondering what the purpose of this is, i can't visibly notice the difference, but perhaps this is some cross browser hack? It seems silly to build such an awesome CSS3…
deweydb
  • 2,238
  • 2
  • 30
  • 37
0
votes
1 answer

(Implementation?) error with value noise causing strange artefacts across image

I am doing experiments with terrain generation using heightmaps, and I just wrote a simple value noise. I cannot see anything in my code, but I cannot see anything other than my own stupidity or a floating-point error occuring: #include #include…
Erkling
  • 509
  • 4
  • 16
0
votes
1 answer

wavelet denoising routine using the wden functions in matlab

I was reading a report today which looked at measuring heat storage of a lake from temperature measurements where to reduce the the impacts of temperature fluctuations that can confound estimates of short-term changes in heat storage, a wavelet…
KatyB
  • 3,920
  • 7
  • 42
  • 72
0
votes
2 answers

How to deal with noise in images captured with a camera

Assume there is a black box there is no light in it and there is a camera in this box. Camera starts capturing and what it captures is nothing - everywhere is pure black in box. But there will be differences in the sizes of captured frames due to…
y33t
  • 649
  • 4
  • 14
  • 23
0
votes
1 answer

What is the term for this kind of "noise generation"?

I'm having a lot of trouble finding information on this, but as it can't be unexplored territory in programming, I'm assuming my troubles stem from missing some critical terminology. Basically, I want a type of 2d noise generation. I had been using…
theory
  • 3
  • 2
0
votes
2 answers

Filter message from noisy voice signal

I am trying to decipher a message hidden within a very noisy(sounds like white noise with an additional low drone) audio file(.wav). The message is a six digit number. I have not been informed of any of the details of the noise. I attempted to…
user1825494
  • 71
  • 1
  • 7
0
votes
1 answer

How to modify a dataset to make a unique dataset in matlab

I have a matrix M in MATLAB, containing m x n numbers. I want to add very small noises to repeated rows to make it unique, i.e., size(M,1) = size(unique(M,'rows'),1). EDIT: I have tried this. But it is not deterministic. while…
remo
  • 880
  • 2
  • 14
  • 32
0
votes
1 answer

Noise box, when a table layout is scrolling, without 'AutoScroll' property enabled

I have a big problem, when I doing a scrolling without 'Autoscrool' property enabled on a table layout, I get a noise box, seems that the layout continue scrolling (see attached image). I have tried update/refresh/invalidate... its container…
Ariel
  • 121
  • 6
0
votes
0 answers

Several sensors - noise filtering algorithm needed

My software receives information from several sensors. The number of sensors is not fixed - they can be added and removed, each sensor one has its own unique identifier. Sensors send data irregularly - they can keep silent for weeks or push data…
DEgorov
  • 305
  • 3
  • 12