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

With opencv,How to use not erosion/dilation but connectedComponentsWithStas to remove dots?

I have read this: Remove spurious small islands of noise in an image - Python OpenCV erosion/dilation are suggested,and just wondering is it possible to do same thing by using connectedComponectsStats?I have googled,got…
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
-1
votes
1 answer

What is the effect of mean and variance in Gaussian noise?

I = imread('us-currency.png'); mean = 0.5; variance = 0.5; J = imnoise(I,'gaussian', mean, variance); imshow(J); What are the effects of mean and variance on that image? Does mean increases the brightness? Does variance increases the amount of…
user366312
  • 16,949
  • 65
  • 235
  • 452
-1
votes
1 answer

logarithmic linear fit plotting in r

I have a dataframe correspond on frequency of each variable (example:variable 1 appear 1984 times and variable 2 appear 974 ...) dff<-data.frame(Var1=c(1 ,2 ,3 ,4 ,5 ,6 ,7 ,8 ,9 ,10 ,11, 12 ,13 ,14 ,15 ,16 ,27, 30 ,35 ,36 ,38 ,39 ,40 ,41),…
user3744999
  • 47
  • 1
  • 7
-1
votes
1 answer

Histogram of noise in an image in MATLAB

I have MATLAB code which is adding some noise to image. Now, I want to show histogram of the noise. I can perform a histogram of the original image and the noisy image and then I can find the difference between them but I'm not sure if that is…
nec
  • 51
  • 1
  • 8
-1
votes
2 answers

I need to create this sine wave in MATLAB. How does one go about it?

I was given the original sine wave(Image 1) and a noisy version of it too(Image 2). Image 1 Image 2 Now to find the original signal, I am looking at the frequency in the first half of the graph which has the greatest value. This would be 21. When…
SDG
  • 2,260
  • 8
  • 35
  • 77
-1
votes
2 answers

How do I add Additive Noise into a sequence of number,C#?

I am beginner in C#. How do i add Additive Noise into a sequence of number? For example, I want to add Noise(3,2,1) into this sequence: 1:1 2:1 3:1 4:1 5:2 6:1 6:2 6:60 7:1 8:1 9:2 10:1 The expected result are as follows, where the noise will be…
Ruby
  • 1
  • 3
-1
votes
1 answer

FIR filter understanding matlab

i'm trying to understand the fir1 filter but i still don't get it. For example here i got an audio signal that i consider noise, i'm passing it through a low pass filter. n = 100000 fs = 11025 handles.noise = wavrecord(n, fs, 'double'); nfilt =…
Kyle Josh
  • 69
  • 8
-1
votes
1 answer

Noise Removal using Lucene 4.8

I couldn't find any examples of removing stop-words from text using Lucene 4.8. Can you please advise me on how to use the classes StopFilter and StopAnalyzer classes to achieve this.
Vineel
  • 1,630
  • 5
  • 26
  • 47
-2
votes
1 answer

add noise to the data without compromising the data pattern

I have a time series data I want to create a dummy data from the original time series data by adding some noise. How can i do that without compromising the data pattern (example: I have Mondays high value in my time series) - even after adding the…
Bella_18
  • 624
  • 1
  • 14
-2
votes
1 answer

How solving Problem installing the noise package

I tried to install noise Python package, but I encountered this error ` PS C:\Users\MacBook\Desktop\python-superhi> python -m pip install noise Collecting noise Using cached noise-1.2.2.zip (132 kB) Preparing metadata (setup.py) ... done Building…
-2
votes
1 answer

How generate Uniform Noise

I have a question, how can I generate uniform noise using its general equation in the MatLab and apply it to a specific image, with a simplified explanation of the code if possible. General Equation
-2
votes
1 answer

deterministic distribution noise in python

I'm trying to simulate this article. In order to make images noisy and based on the article I need to add manually deterministic distribution noise to Mnist dataset. The article says " This noise has been added manually using deterministic…
-2
votes
1 answer

Kalman Filter : How measurement noise covariance matrix and process noise helps in working of kalman filter , can some one explain intuitively?

How process noise covariance and measurement noise covariance are helping better functioning of Kalman filter ? Can someone explain intuitively without significant equations and math please.
user5349
  • 123
  • 7
-2
votes
3 answers

How to remove specific noise from image with OpenCV

How I can remove this noise (rectangle 2x2px) from binary image?
-2
votes
1 answer

How to use connectedComponentsWithStats to remove dots?

With contour,I can do it like this: if cv2.contourArea(cntr) <= 3: cv2.drawContours(img, [cntr], -1, (0, 0, 0), 1) How to do it with ConnectedComponentsStats?
Alex Luya
  • 9,412
  • 15
  • 59
  • 91
1 2 3
63
64