946 questions
Best practices
0 votes
1 replies
27 views
Best way to generate a noisy image with ImageMagick?
What's the best way to generate a noisy image with ImageMagick? I'd like to create an image where the color-frequency distribution is even (white noise) or skewed toward lower frequency colors (brown ...
1 vote
0 answers
58 views
How should I go about generating a height/elevation map for a procedurally generated map?
I'm currently working on a personal project on making a procedural map generator. The way it currently is working is not the most intuitive, it's three different scripts all importing from each other, ...
0 votes
1 answer
55 views
Kalman Filter with weighted Non-Gaussian Noise
I have question regarding how to implement a Kalman Filter when the measurements are less than reliable. I am attempting to use a UWB piece of technology called a DecaWave for indoor localization. In ...
0 votes
0 answers
65 views
Noise pattern has subtle difference between glsl and hlsl
I'm using a noise algorithm from here, the code is highp vec3 mod289(highp vec3 x) { return x - floor(x * (1.0 / 289.0)) * 289.0; } highp vec4 mod289(highp vec4 x) { ...
0 votes
0 answers
46 views
End-to-End DVB-RCS2 Simulation phase noise
There is an example on matlab End-to-End DVB-RCS2 Simulation: link. Why is the influence of phase noise not modeled in this example? Is this an incorrect simplification of the model or does the phase ...
2 votes
0 answers
82 views
Pre-whitening MRI
I'm working on SENSE MRI reconstruction using simulated phantom data in MATLAB. I add correlated Gaussian noise to the data and then apply a whitening transform so that the noise covariance matrix ...
0 votes
0 answers
31 views
How to use low-frequency filtering to process the rising signal
My strain time-domain data shown in figure 1 contains significant high-frequency noise. The segment I focus on is the strain rising phase shown in figure 2, where the amplitude can be truncated at 1e4....
0 votes
0 answers
87 views
Why does android Noise Suppressor capture more background noise, and how to handle this?
I'm working on a project where I need to record speech audio and perform processing on it. I'm using the Noise Suppressor API to reduce background noise, but I’ve noticed that the behavior of this API ...
0 votes
2 answers
240 views
Adding Gaussian Noise to a signal, opposed to generating gaussian noise directly
I am generating noise using a gaussian distribution, and have hit a conceptual block. Is there a difference between generating a noise value and adding it to clean data: def add_noise(data_frame, ...
1 vote
0 answers
69 views
Bug in current WebGL shader implementation concerning variable settings?
We have a framework for doing WegGL shader animations. Since recent version of WebGL we observe strange behaviour. Everything worked well in Safari up to Mac OS Ventura 13.x and iOS 16.x. Things get ...
0 votes
1 answer
60 views
Issue With 2d Noise
I'm making a top down survival game and I have done a procedural world gen using noise2D (FastNoiseLite). The next step was to randomize the seed, but I can't figure out how to... Thanks I tried : @...
1 vote
1 answer
113 views
limit iOS bluetooth connection to one device being used
Is there a way to limit bluetooth to one device connection so people cannot create unwanted connections on the iPhone in IOS. Some people just want the music.app and not kali linux connections...
2 votes
0 answers
27 views
3D scatterplot, matrix operations and calculation of the inverse
I have a scatter-plot with the code shown below. import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D import numpy as np x = np.random.rand(100) y = np.random.rand(100) z = np....
0 votes
1 answer
109 views
How to separate noise and signal in a histogram
I have a histogramme who represent the max amplitude of 3000 signal + noise and this come from infrared detector. so, the signal is a number of photon. I want to normalized the histogram in function ...
0 votes
1 answer
93 views
How to define process noise in BLE measurement for Kalman Filter implementation?
What am I doing? I am playing around with BLE for distance calculation and asset tracking. To standardize the sensitivity of each sensor, I have devised a 1D jig. The jig has scale model train track ...