Pretty good function - allows me to get the data into MATLAB, which is what I need. It should probably be titled ipl2cell, since it doesn't take the data directly to image files. But it gets you most of the way... you can get the data to numeric form by the following line (assuming for the sake of example that your images are 128 x 128):
img_mat = reshape(cell2mat(img_cell),128,128,[]);
In my opinion it would be more useful to turn off the 'debug' feature by default.
Still, all in all a helpful function for IPLab users. Thanks!
Pretty good function - allows me to get the data into MATLAB, which is what I need. It should probably be titled ipl2cell, since it doesn't take the data directly to image files. But it gets you most of the way... you can get the data to numeric form by the following line (assuming for the sake of example that your images are 128 x 128):
img_mat = reshape(cell2mat(img_cell),128,128,[]);
In my opinion it would be more useful to turn off the 'debug' feature by default.
Still, all in all a helpful function for IPLab users. Thanks!