Hello, I find these approach and he is a very interesting.
I try to run selfcalib function on Matlab.
size(Ws)
12 563
size(IdMat)
4 563
selfcalib(Ws,IdMat)
But I receive error:
Error in ==> selfcalib
Ws(i*3-2:i*3-1,IdMat(i,:)>0) = [X_i'; ones(1,sum(IdMat(i,:)>0))];
I try understand.
So size of left and right parts are different
size(Ws(i*3-2:i*3-1,IdMat(i,:)>0))
ans =
2 474
size([X_i'; ones(1,sum(IdMat(i,:)>0))])
ans =
3 474
I want run code and after that understand how it works step by step.
Where Is error. How it fix.
Or maybe I use this code in wrong way.
Thanks!