Noise is random variation in a signal, for example errors in measurements of the position of a moving object.

learn more… | top users | synonyms

0
votes
1answer
13 views

android noise effect on bitmap

I am writing some function to add noise effect on bitmap. I found similar question: Add noise effect to a drawing Bitmap outputBitmap = Bitmap.createBitmap(bitmap.getWidth(), bitmap.getHeight(), ...
0
votes
0answers
8 views

Non-iterative algorithm to generate worm structures

I am looking for an algorithm to generate worm-like structures similar to Perlin Worms, but not an iterative one. Instead I want to determine whether there is a worm or not directly for a given point. ...
-1
votes
1answer
25 views

Floating point image and noise in MATLAB [closed]

I have an image with a floating points values, can I implement different types of noises on it while preserving its datatype?
0
votes
1answer
30 views

How to get a random number from a 2d coordinate and a seed?

I'm trying to make some noise based terrain generation and I need to get a random point from a a coordinate point, and a seed. Now, the hard part I'm struggling with is having the same number returned ...
0
votes
0answers
18 views

Matlab Noise Spectral Filter based on Bin's Energy (ifft issue)

i'm trying to build a noise removal filter using spectral domain. I know my signal doesn't need components below 0.5 and above 5 Hz so i zero them out in the frequency domain. When i do inverse ...
0
votes
1answer
55 views

How to use noise to generate varied terrain biome style

I'm currently using value noise I believe it is called in combination with fractal Brownian motion to generate terrain in a 3D environment. I generate a 2D height-map from the noise, with values ...
-1
votes
0answers
32 views

generate stationary time series [closed]

i am interested if it is possible in matlab to create stationary time series difference from white noise?i know how to create white noise in matlab,like this y=randn(1000,1); ...
0
votes
0answers
25 views

use watts in random signal generation

i would like to understand what is a different from electrical point of view in generation of two kind of random noise,one let say white noise and second Gaussian random signal,let us consider ...
-2
votes
0answers
93 views

Removing noise from audio using Fourier transform in Matlab [closed]

I'm trying to remove noise from an audio file. This audio file contains speech as well as constant pink noise. I know that I have to use the Fourier transform to convert to the frequency domain then ...
-1
votes
0answers
32 views

Trouble applying a suitable filtering on radar signals under MATLAB [closed]

I try to filter numerical signals received by a Doppler radar so as to limit the impact of noise. More precisely, I treat the complex envelope (given under Rice components I and Q) affected by noise. ...
0
votes
0answers
55 views

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 ...
0
votes
1answer
38 views

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 ...
0
votes
1answer
50 views

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 ...
0
votes
1answer
195 views

How to calculate SNR of signals in MATLAB?

I've encountered a very simple, yet fundamental problem on calculating the SNR: There are several signals : S1 = original and pure clean signal without noise. N1 = white Gaussian noise which is ...
0
votes
1answer
86 views

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); ...
1
vote
1answer
26 views

how to set minimum acceptable recognition accuracy?

I need to recognize key words in long speech audio file (wav). There can be different noise, clicks, clangs, etc. This sounds are often recognized as keywords. How can I set some threshold to ...
3
votes
1answer
303 views

Using imnoise to add gaussian noise to an image

How do I add white Gaussian noise with SNR=5dB to an image using imnoise? I know that the syntax is: J = imnoise(I,type,parameters) and: SNR = 10log10[var(image)/var(error image)] How do I ...
1
vote
1answer
89 views

What kind of noise is present in this image and how do I remove it?

My task was to deblur a image. I used Weiner Filter and got this kind of image. Is it possible to improve it further? Here is my code: I = im2double(imread('Demo4_b.jpg')); imshow(I); ...
1
vote
1answer
32 views

Finding if a Picture Contains Grain Noise

I am trying to find if a certain picture contains grain noise. I have had ideas about how to find grain noise in a movie (comparing each frame with the previous frames), but I have no clue what to do ...
0
votes
1answer
103 views

translate gaussian noise in opencv to emgu cv [closed]

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 ...
0
votes
1answer
100 views

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, ...
1
vote
2answers
57 views

Simulating TV noise

I have googled a bit but was never able to find an answer. What should be my first approach to simulate a video and audio noise from TV on screen? I mean, when my TV antenna is removed but the TV is ...
0
votes
0answers
32 views

How to make the edges of Simplex Noise all a certain level

Hey I have just started doing world generation recently, and I was wondering if there was a way using Simplex noise(the class I am using is located here) and I was wondering if it were possible to ...
2
votes
2answers
120 views

Trying to filter (tons of) noise from accelerometers and gyroscopes

My project: I'm developing a slot car with 3-axis accelerometer and gyroscope, trying to estimate the car pose (x, y, z, yaw, pitch) but I have a big problem with my vibration noise (while the car is ...
0
votes
0answers
9 views

create colored noise/ partially correlation matrix

I am working on a project where I'm asked to create an array of correlated noise of 1000 elements, with only adjacent elements being correlated. How should I do this?
0
votes
0answers
28 views

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 ...
0
votes
3answers
72 views

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 ...
3
votes
2answers
194 views

Noisy path generated by A* algorithm

I'm working on a front-end for a robotic project (an 'autonomous' car that localizes itself using some sensors and a map - generated from an SVG file). For the robot to be controllable, we must ...
0
votes
0answers
55 views

Is there a module to generate noise in Python 2.6?

I mean as a standard, not an external module. Something like a Perlin noise, etc.
0
votes
2answers
62 views

How to verify what's noise what's real data?

I am wondering how can I claim that I correctly catch the "noise" in my data ? To be more specific, take Principle Component Analysis as example, we know that in PCA, after doing SVD, we can zeros ...
1
vote
0answers
136 views

Estimating an image deblurring/denoising technique

I'm new to image processing and wanted to deblur/denoise some images using Matlab. Example: Input Output I don't know the exact blurring/noising effects by which the second image came about. At ...
1
vote
1answer
53 views

Seeded Pseudo Random Number Generator

I am developing a Perlin Noise generator which works based on a seed integer and on two other integers: x and y. By now, the pseudo-random number generator is looking like this: private float ...
0
votes
1answer
159 views

Accelerometer Noise

I read in the internet that Accelerometer suffers from 1/f noise at low frequencies and Gaussian noise at high frequencies. But i didn't understand what frequency they are referring to? Is it the ...
2
votes
1answer
825 views

Determine frequency from signal data in MATLAB

I know there are a few questions like this already, but none of them really give a useful answer. I have data from a sensor and I need to find the frequency of it. It looks like fft() seems to be the ...
-1
votes
1answer
122 views

How to add noise to wav file using python?

I have a clean wav, and a wav containing a pre-generated noise, and I would like to add the noise to the clean wav file, to create a noisy wav. I saw here this can be easily done with matlab. How ...
0
votes
0answers
40 views

raw wifi “signal data” access

Target OS: Windows Target Programming language: C/any I need a way to access raw Wi-Fi data, where I can actually see the noise bits. I need to access this for a project and while I have searched ...
0
votes
1answer
47 views

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 right ...
3
votes
3answers
234 views

Add noise texture effect to navbar in CSS

Is it possible to add a noise layer to a navbar in CSS? Like this one: Either with CSS or background-image (without editing in Photoshop or similar.) .navbar-inner { min-height: 40px; ...
1
vote
1answer
354 views

Image Poisson Noise on image in double precision (shot noise)

I am trying to add poisson noise to an image with doulbe precision. I do: I = im2double(imread('mypic.tif')); % mypic.tif is already in the range 0...1 in double precision J = imnoise(I,'poisson'); ...
1
vote
0answers
188 views

Noise Cancellation Filter w/ MATLAB

I have an input signal: x[n] = sin(pi/10*n) * (u[n] - u[n-10]) and an impulse response: h[n] = 0.9^n * u[n] + delta(n) representing the echo of the system. So I'm trying to design an echo ...
0
votes
1answer
235 views

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 ...
0
votes
1answer
169 views

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 ...
1
vote
1answer
90 views

Obtaining meaningful velocity information from noisy position data

If this question is posted on the wrong stackexchange site - please suggest where I can migrate it to! I'm studying the velocity of an object that undergoes multiple conditions with walls as well as ...
0
votes
2answers
76 views

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? ...
0
votes
1answer
20 views

(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 ...
1
vote
4answers
1k views

Generate white noise with amplitude between [-1 1] with Matlab

I'm using the Matlab function Y = WGN(M,N,P) to generate white noise with Gaussian distribution. This function uses a power value (dB Watts) to calculate the amplitude of the output signal. Since I ...
0
votes
1answer
169 views

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

Remove spike noise from data in Python

I'm transitioning all of my data analysis from MATLAB to Python and I've finally hit a block where I've been unable to quickly find a turnkey solution. I have time series data from many instruments ...
0
votes
0answers
97 views

Perlin noise on a compute shader

I have several noise functions implemented in pixel shaders that I want to port to DirectCompute. How would I take advantage of compute shaders to improve the noise generation? I heard integer math ...
2
votes
1answer
618 views

Filtering signal with white gaussian noise in MATLAB

I have a signal/vector with high amplitude white gaussian noise and I'm trying to get a binary signal (0 or 1). The sampling frequency is 10Hz. I applied a simple 2nd order Butterworth filter in ...

1 2 3 4 5