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
3 answers

How to filter an array to remove wrong values (like noise)?

I have a measurement array of 1024 values. But in this array are some values wrong like noise/peaks. The array is normally like sinus so all values should be in a good line. How can i create a filter to the array to remove these peaks and noise? I…
Thomas Mann
  • 99
  • 3
  • 19
0
votes
0 answers

Is there a way to remove noise from a sound file in MATLAB that is in the same frequency range as the person speaking?

I have a .wav file that is a recording of a person saying a sentence with a little bit of noise in it. First there is a few seconds of just noise, then the person speaking, then a second or two of just noise again. I wanted to see if I can filter…
0
votes
1 answer

how to get 50% darkshade on an image in matlab

i have a question given for me.in that the objective is to encrypt the image to some noise and at last have to get 50% black shade on that image.i have done till the encryption.can anyone tell me how to get 50% darkshade in it. clc; clear all; close…
0
votes
1 answer

Recording the Stereo Mix and Parasites

I'm trying to make a video tutorial, so i decided to record the speeches using a TTS online service. I use Audacity to capture the sound, and the sound was clear ! After dinning, i wanted to finish the last speeches, but the sound wasn't the same…
YOo Slim
  • 54
  • 1
  • 8
0
votes
2 answers

making pink noise (1/f) using list of frequencies

making pink noise (1/f) using list of frequencies I would like to see what type of noise I would get if I used just the frequency in my voice. I created a matlab/octave array using fft to get the [frequency,amplitude,phase] to reproduce my vocal…
Rick T
  • 3,349
  • 10
  • 54
  • 119
0
votes
1 answer

Artefacts in Interpolated Value Noise

I'm trying to create a basic value noise function. I've reached the point where it's outputting it but within the output there are unexpected artefacts popping up such as diagonal discontinuous lines and blurs. I just can't seem to find what's…
0
votes
2 answers

Using Perlin noise to generate a 2d tile map

I looked all over the internet and researched Perlin noise, however, I am still confused. I am using java and libgdx. I have got a Perlin class to work and generate noise but I'm not sure if the values its giving are correct. How do I check it…
user2489897
  • 77
  • 1
  • 1
  • 9
0
votes
1 answer

Apply noise over mesh in OpenGL w/o texcoords

I have an issue with applying noise over the surface of a non-trivial mesh (well any mesh) in OpenGL without texture coordinates. I basically want to have a noise texture applied over the surface but since I don't have texture coordinates I can't…
Stinomus
  • 113
  • 7
0
votes
2 answers

Additive White Gaussian Noise Java in dB

I am trying to add AWGN to my audio file. I convert my wav file to byte array. I am trying to add 10dB AWGN to this array. In matlab there is imnoise which adds AWGN to image. In java is there any library? Thanks in advance.
0
votes
1 answer

Coherent Spherical Noise?

Does anyone know how I might be able to generate the following kind of noise? Three inputs, three outputs The outputs must always result in a vector of the same magnitude If it receives the same input as some other time, it must return the same…
Miles
  • 1,858
  • 1
  • 21
  • 34
0
votes
0 answers

Adding Gamma noise to an image without using imnoise function in matlab?

I have added 6 different type of noise to an image without using imnoise but still there is one type that i couldn't find anywhere, The Gamma noise!!! how could i add Gamma noise to an image without imnoise?? If you had the answer of the first…
Rman Edv
  • 163
  • 1
  • 17
0
votes
1 answer

Noisy ADC dsPIC

I've got a dsPIC33F collecting from two ADC channels, simultaneously, at 10bit. I'm using a timer to sample at 64Hz and have the ADC set to auto sampling, but manual conversion. Every time the timer interrupt is polled I'm clearing the sample bit…
ritchie888
  • 583
  • 3
  • 12
  • 27
0
votes
1 answer

How to add impulsive and gamma noise to an image without using imnoise function in matlab?

I was wondering if you could give me some advice on how to add impulsive and Gamma noise to an image separately? It's so easy with imnoise function of matlab, but i'm not allowed to use imnoise, Our TA said you can just use rand function. I came…
Rman Edv
  • 163
  • 1
  • 17
0
votes
1 answer

Adding noise to speech signal

I'm attempting to add noise to a speech signal (.wav file) in matlab using the following method: load handel.mat; hfile= 'noisy.wav'; y = wavread('daveno.wav'); y = y + randn(size(y)) * (1/100); wavwrite(y, Fs, hfile); nsamples=Fs; This adds the…
Phorce
  • 2,632
  • 13
  • 43
  • 76
0
votes
1 answer

translate gaussian noise in opencv to emgu cv

I'm studying Image Processing and i need to make gaussian noise in c# with emgu cv. i find the code Mat gaussian_noise = img.clone(); randn(gaussian_noise,128,30); is make gaussian noise in open cv. what is the traslate code in emgu cv?