Based on the paper Blind Image deconvolution:
A feature vector is a list of numbers used to represent an image. The feature vector for my case takes values as symbols $-1,1$.
An instance or an example of an image is represented as a feature vector of $d$ feature values $\mathbf{x} = [x_1,x_2,...,x_d]$. I have $N$ examples $$\{\mathbf{x}_i\}_{i=1}^N$$ in the form of a database. So, the database contains $N$ rows of feature vectors each of $d$ length. One such pattern (feature vector) is $$\mathbf{x} = [1, -1, -1, -1, -1, 1, -1, 1, 1, 1, 1, -1, -1, 1, 1, 1, 1, -1, -1, 1, 1, 1, 1, -1, 1, -1, -1, -1, -1, 1]'$$ where $d = 30$ The database thus has $N$ rows of examples each of $d$ length : $$ \mathbf{x_1} = x_{11},x_{12},....,x_{1d}$$ $$ \mathbf{x_2} = x_{21},x_{22},....,x_{2d}$$ $$ ::$$ $$ \mathbf{x_N} = x_{N1},x_{N2},....,x_{Nd}$$
I don't know how to use the above as input to the channel. In general,
the output is,
$$\mathbf{y} = H^T x$$
Assuming that the impulse response is that of FIR, then I am facing difficulty in how to represent the channel. Should the source input be each component of the feature vector or an entire example?
if the input in the form of the feature vector is transmitted via a channel whose impulse response is modeled as moving average (finite response, FIR) then inputs and how many outputs should there be? The output would be the convolution of the input and the impulse response. Would the channel be Single input-Single Output FIR or Multiple Input Multiple Output FIR ? The objective is to estimate the channel parameters and the input using estimation methods from the output observation only. Would the estimation be performed using one example or all the examples?
Should there be $d$ channel coefficients? A mathematical representation of the system will really help to clear the concept. Thank you