I got a piece of MATLAB code like this:
input0(i,k,:,:)=imread(filename);
Anybody knows what it is used for? Thanks.
I got a piece of MATLAB code like this:
input0(i,k,:,:)=imread(filename);
Anybody knows what it is used for? Thanks.
it reads an image to the third and fourth dimension of input0 matrix input0 is a table where each element is an image with dimension size(input0,3)*size(input0,4)
and (i,k:,:)
notation is used to select all rows and columns in position (j,k)