Questions tagged [sparsity]

44 questions
11
votes
1 answer

What is an exact measure of sparsity?

I am currently working on compressed sensing and sparse representation of signals, specificly images. I am frequently asked "what is sparsity definition?". I answer "if most elements of a signal are zero or close to zero, in some domain like Fourier…
M.Jalali
  • 447
  • 3
  • 13
9
votes
2 answers

Compressive Sensing vs. Sparse Coding

There apparently are different terminologies used to refer to the same field called "compressive sensing" such as (see this wiki page): compressed sensing, compressive sampling, or sparse sampling. I wonder about "sparse sensing"…
6
votes
2 answers

Is There a Sparse Representation for Noise?

Is there sparse representation for stationary noise and nonstationary noise? How can I learn dictionary for each noise class? (my mean of noise is noises with which speech signals are often contaminated such as white gaussian noise, car noise,…
beni
  • 61
  • 2
6
votes
1 answer

Terminologies - sparse channel, sparse input, compressed sensing

The term sparse in general means that there are more elements that are zero valued or very close to zero in comparison to the number of non-zero. In speech deonvolution research papers, the channel is assumed to be sparse, so the channel has more…
SKM
  • 583
  • 8
  • 24
6
votes
1 answer

Is the basis of the sparse signal assumed known in compressed sensing?

I'm new to compressed sensing, and am a little confused about the assumption of the basis matrix $\Psi$. Is $\Psi$ assumed known in compressed sensing? Specifically, suppose that a signal $x$ is sparse in some basis, say $\Psi$, i.e.…
syeh_106
  • 163
  • 3
5
votes
1 answer

Super Resolution in Frequency Domain Using Compressed Sensing

To be noted that I'm very new to this topic, I would like to understand the fundamentals of how to get Super Resolution in Frequency Domain estimation using the Compressed Sensing Model. I am also looking for some references and Python/Matlab code…
5
votes
2 answers

Estimating Convolution Input Under the Assumption of Sparsity and Constant Non Zero Values Using Compressive Sensing Approach

I was wondering about if there is compressive sensing algorithm to estimate the sparse vector where the number of non-zeros values and amplitude of every non-zeros value are known. For example, assume we have a vector $x$ whose length is $N$x$1$…
5
votes
2 answers

Orthonormal Dictionaries for Band Limited Signals

If $\mathbf{x} = [x_0, x_1, \ldots, x_{N-1}]^T$ is the time sampled input signal and $\mathbf{Y} = [Y_0, Y_1, \ldots, Y_{N-1}]^T$ is the Fourier transform of the input signal, then a linear relationship between the input and output can be…
4
votes
1 answer

How Is Mixed Norm ($ {L}_{1, 2 }$) Better than $ {L}_{1} $ Norm for Sparse Representation?

Using $ {l}_{1} $-norm regularization for the purpose of achieving sparsity of the solution has been successfully applied a lot. But many times, I found the paper using mixed-norm instead of $l_1$-norm. Considering the mixed norm $ {L}_{p,q}$ norm…
4
votes
1 answer

Sparse Recovery Best Algorithms

In the big data era, in order to control the cost, complexity, and bandwidth of collecting and processing high-dimensional data systems, it is critical to exploit models that encapsulate prior information regarding the signals of…
4
votes
2 answers

Solving LASSO ($ {L}_{1} $ Regularized Least Squares) with Gradient Descent

To the best of my knowledge, state of the art methods for optimizing the LASSO objective function include the LARS algorithm and proximal gradient methods. I was wondering however, if the LASSO objective function $$ ||y-Ax||_2^2 + \lambda ||x||_1$$…
4
votes
2 answers

Best Metric to Compare Sparsity of Vectors

I solved the Basis Pursuit Denoising Problem looking for a sparse solution (I am in compressive sensing): $$ {x}^{\ast} = \arg \min_{x} \left\{ \frac{1}{2} {\left\| A x - y \right\|}_{2}^{2} + \lambda {\left\| x \right\|}_{1} \right\} $$ for $ 100 $…
Tatackola
  • 41
  • 1
3
votes
3 answers

Real world application of signal sparsity?

There are theories based on signal sparsity in frequency domain like Compressive Sensing, Sparse FFT, etc. Throughout searching and studying papers I found out Cognitive Radio is a good example of application of Fourier sparse signals in real…
2
votes
1 answer

Differences Between Two $ {L}_{1} $ Norm Minimization Schemes

I was reading and working with L1 regularized least squares, where: $$ \arg \min_{\boldsymbol{x}} \frac{1}{2} {\left\| A \boldsymbol{x} - \boldsymbol{y} \right\|}_{2}^{2} + \lambda {\left\| \boldsymbol{x} \right\|}_{1} $$ is used to solve for sparse…
dpdp
  • 93
  • 6
2
votes
1 answer

Can a linear reconstruction in compressive sensing perform well?

I am trying to implement compressive sensing for grayscale 2D images, then reconstructing them using a multi-layer perceptron(MLP). It seems to perform well no matter how many layers I add or remove, even without activation functions which is…
1
2 3