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

STM32 ADC Averaging Values

I would like to get peak value from STM32 adc samples. I have written the below code and I've managed to get peak value however most of the time this value includes the biggest noise. In order to eliminate noise effects, I have decided to apply…
Umt
  • 1
  • 1
-1
votes
1 answer

Temporal noise in images

I would like to have a groundtruth image to compare the temporal denoising of Kinect data. However I cannot find a dataset/database for the same. If not a groundtruth then I would like to have a completely de-noised(temporal domain) images and an…
POOJA MORE
  • 21
  • 1
-1
votes
1 answer

METAL - Fragment shader is producing noise

I am trying to use basic lighting techniques described in Metal By Tutorials to produce a diffuse, ambient, and specular light on my models. I have used this lighting algorithm plenty of times and it works great, but the past 2 times the specular…
Jamie2020
  • 49
  • 5
-1
votes
1 answer

How to find noise point of .wav file. i mean, not remove noise, just when occurred noise by using python

How to find noise point of .wav file. i mean, not remove noise, just when occurred noise i checked this site that classify dog and cat sound https://www.kaggle.com/nadir89/classification-logistic-regression-svm-on-mfccs/notebook?select=utils.py but…
-1
votes
1 answer

Using 1D Perlin Noise to Generate 2D Terrain

Alright, so I'm working with Swift, and I have GameKit's GKNoise class which allows me to get a noise value given an input. If you graph it you get that standard perlin noise mountain. What I need to do is create a second perlin noise function that…
theParadox42
  • 65
  • 1
  • 7
-1
votes
2 answers

Dirty Image Quality Assesment Measure

I was looking for a way to measure (image quality score) how dirty is the document in image processing. Example images below: a. Dirty Backgrounds w/o Text Can someone give me an initial idea to start my analysis? I was thinking of converting it…
alyssaeliyah
  • 2,214
  • 6
  • 33
  • 80
-1
votes
2 answers

How can I better noise addition in python?

I'm trying to add a random noise from uniform distribution between min pixel value and 0.1 times the maximum pixel value to each pixel for each channel of original image. Here's my code so far: [in]: import cv2 import numpy as np import…
Mine
  • 831
  • 1
  • 8
  • 27
-1
votes
1 answer

Coding noise cancellation in matlab

This is a program I found online. It's supposed to take an audio file from the folder, add noise and then filter it out. However, ha=dsp.LMSFilter(256,mu); is wrong and how to add the correct arguments to dsp.LMSFilter(), I have no idea. Alos, I…
-1
votes
1 answer

How to generate multiple 3D Coordinates with noise

I am currently trying to generate a 3D planetary map like No Man's Sky does using the simplex noise plugin in unreal engine blueprints. How can i generate coordinates for the individual planets? I already tried to create 3 for loops and get the…
-1
votes
1 answer

intel xeon windows 10 fan speed so high and noise

After installing windows 10 pro on my Xeon workstation, i realize the case's fan speed up so quickly since sign on desktop, and it's very noise. Not open any application and wait for speed down. The fan speed is still at very high and of course…
-1
votes
1 answer

Remove noise, sky glow and vignetting in GIMP

I have an photo of a comet. I'm trying to use GIMP to improve it but it's like space shuttle to me. Can you please describe steps to get rid of or reduce vignetting in the corners of the image get rid of or reduce sky glow and make the sky darker…
-1
votes
1 answer

Looking for suitable methods to check goodness of a model based on the residuals or prediction errors?

I am looking for suitable methods to check goodness of my model based on the residuals or prediction errors. I want to make sure that the model residuals or prediction errors are normally distributed and uncorrelated. I would appreciate your…
-1
votes
1 answer

Extended Kalman Filter (EKF) singularity problem when I get measurement noise is zero

My extended kalman filter (EKF) program works well: my estimated state vector is same as real state vector when I give any positive definite number to measurement noise R, even though I gives 10^ -14 to R. But I want to make covariance analysis,…
furkan
  • 1
  • 2
-1
votes
3 answers

Rx and Tx creating a lot of noise when floating on ESP8266 and Arduino

I have connected an Arduino Pro-Mini 3.3V 8MHz to an ESP8266 via I2C. The Arduino is in charge of collecting data from a thermistor (analog temperature) (T2) and a SI7021 (digital temperature) (T1). The ESP8266 is in charge of sending the data…
ClemRz
  • 126
  • 1
  • 11
-1
votes
1 answer

Audio recording remove noise

I have a problem with audio recording in JavaScript. Everything is working, when the computers are far away, but when they approach each other, the voice coming out of the speaker is heard on the other side's loudspeaker and the sound begins to jump…