I'm working on two-dimensional AR modelling and using the
from Matlab. In matlab there is a commend LPC which can compute the LP coefficients. How can I integrate to two dimension for image ?
The matlab code for one dimension signal is
[a]=lpc(signal,order)
est_signal = filter([0 -a(2:end)],1,signal);
error = signal-est_signal;